Prototyping the Adaptable Emergency System on an C027 board.

Dependencies:   C027_Support mbed

Fork of c027_prototyping by Philémon Favrod

Revision:
4:f1708f6ec905
Parent:
3:12e1c2c71cf2
Child:
7:eeef6f9fa1db
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gps_locate.h	Tue Sep 30 16:06:35 2014 +0000
@@ -0,0 +1,17 @@
+#ifndef __GPS_LOCATE_H__
+#define __GPS_LOCATE_H__
+
+struct gps_data_t {
+    double la;
+    double lo;
+    double altitude;
+    double speed;
+} gps_data_t; 
+
+int gps_on(void);
+
+int gps_off(void);
+
+int gps_locate(struct gps_data_t* gps_data);
+
+#endif
\ No newline at end of file