AA

Dependents:   coen490_controller_

Fork of gps_settings_venus by eisei taro

Revision:
0:d80196ed93bc
Child:
2:866d7cb1ce21
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gps_stg_venus.h	Sat Nov 09 12:07:43 2013 +0000
@@ -0,0 +1,13 @@
+#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;
+};
+
+