{baud, NMEA} setting functions for venus GPS chip it is just a copy&paste stuff of these code written by shimniok. http://mbed.org/users/shimniok/code/AVC_2012/docs/tip/GPS_8cpp_source.html https://www.sparkfun.com/datasheets/GPS/Modules/AN0003_v1.4.14_FlashOnly.pdf

Dependents:   GPS_setting_Venus_Helloworld gps-fix

gps_stg_venus.h

Committer:
sssrc_frsh2013
Date:
2013-11-09
Revision:
0:d80196ed93bc

File content as of revision 0:d80196ed93bc:

#include "mbed.h"

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