doppler shift / Mbed 2 deprecated calsat32_5

Dependencies:   mbed

Revision:
0:c5c02975ae0c
Child:
1:fec69401b978
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Dec 11 08:24:02 2020 +0000
@@ -0,0 +1,45 @@
+#include "mbed.h"
+
+Serial pc(SERIAL_TX, SERIAL_RX);
+Serial device(PA_9,PA_10);
+
+void doppler(){
+    while(1){
+        char c = device.getc();
+        if(c == 0xfd){
+            break;
+            }
+        else{
+            printf("%02hhx ",c);
+            }
+        }
+    }
+    
+int main()
+{
+    device.baud(9600);
+    pc.baud(921600);
+    while(1) {
+        char c = device.getc();
+
+        if(c == 0xfe) {
+            //pc.printf("%02hhx ",c);
+            while(1) {
+                c = device.getc();
+                if(c  == 0x00){
+                    //pc.printf("%02hhx\r\n ",c);
+                    doppler();
+                    printf("\r\n");
+                    break;
+                    }
+                else{
+                    //pc.printf("%02hhx ",c);
+                    
+                }
+            }
+        }
+    }
+}
+
+
+