AA

Dependents:   coen490_controller_

Fork of gps_settings_venus by eisei taro

gps_stg_venus.h

Committer:
urietony
Date:
2017-03-21
Revision:
2:866d7cb1ce21
Parent:
0:d80196ed93bc

File content as of revision 2:866d7cb1ce21:

#include "mbed.h"

class GPSVenus {
public:
    GPSVenus(Serial & GPSPort_);
    void setBaud_9600();
    void setNmeaMessages(bool gga, bool gsa, bool gsv, bool gll, bool rmc, bool vtg);
    void setUpdateRate(int rate);
private:
    Serial & GPSPort;
};