gst_code

Dependencies:   HEPTA_SENSOR mbed HEPTA_EPS HEPTA_COM

Files at this revision

API Documentation at this revision

Comitter:
anfegusa
Date:
Fri Aug 26 15:20:52 2022 +0000
Commit message:
Final version;

Changed in this revision

GST_main.cpp Show annotated file Show diff for this revision Revisions of this file
HEPTA_COM.lib Show annotated file Show diff for this revision Revisions of this file
HEPTA_EPS.lib Show annotated file Show diff for this revision Revisions of this file
HEPTA_SENSOR.lib Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GST_main.cpp	Fri Aug 26 15:20:52 2022 +0000
@@ -0,0 +1,27 @@
+#include "mbed.h"
+#include "HEPTA_COM.h"
+#include "HEPTA_EPS.h"
+#include "HEPTA_SENSOR.h"
+
+Serial pc(USBTX,USBRX);
+HEPTA_COM com(p9,p10);
+HEPTA_EPS eps(p16,p26);
+HEPTA_SENSOR sensor(p17,
+                  p28,p27,0x19,0x69,0x13,
+                  p13, p14,p25,p24);
+
+int main() {
+    pc.baud(9600);
+    com.baud(9600);
+    sensor.gps_setting();
+    int quality=0,stnum=0,gps_check=0;
+    char ns='A',ew='B',aunit='m';
+    float time=0.0,latitude=0.0,longitude=0.0,hacu=0.0,altitude=0.0;
+    for(int i=1; i<700; i++) {
+        sensor.gga_sensing(&time, &latitude, &ns, &longitude, &ew, &quality, &stnum, &hacu, &altitude, &aunit, &gps_check);
+        if((gps_check==0)|(gps_check==1)) {
+            pc.printf("This is GST,SOS,%f,%f,%f,%f %\r\n",time,latitude,longitude,altitude);
+            com.printf("This is GST,SOS,%f,%f,%f,%f %\r\n",time,latitude,longitude,altitude);
+        }
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_COM.lib	Fri Aug 26 15:20:52 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/HeptaSatTraining2019/code/HEPTA_COM/#1838cbd7d223
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_EPS.lib	Fri Aug 26 15:20:52 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/HeptaSatTraining2019/code/HEPTA_EPS/#4f08f55763c7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HEPTA_SENSOR.lib	Fri Aug 26 15:20:52 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/teams/HEPTA-Sat-Training-2022/code/HEPTA_SENSOR/#8402214a0b6b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Aug 26 15:20:52 2022 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file