Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: main.cpp
- 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); + + } + } + } + } +} + + +