doppler shift / Mbed 2 deprecated STM32_ADC_InternalChannels

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
ryouheitakamoto
Date:
Mon Dec 07 07:01:06 2020 +0000
Parent:
0:ea607cf8589c
Commit message:
calsat_pc; ;

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r ea607cf8589c -r 2cebb75d319e main.cpp
--- a/main.cpp	Mon Dec 07 06:25:36 2020 +0000
+++ b/main.cpp	Mon Dec 07 07:01:06 2020 +0000
@@ -1,6 +1,6 @@
 #include "mbed.h"
 Serial pc(USBTX, USBRX, 9600);
-
+Serial device(PA_9,PA_10);
 
 //DigitalOut dir(D4);
  
@@ -9,7 +9,8 @@
     while(1) {
  
         while(pc.readable()){ 
-            pc.putc(pc.getc());
+            char a = device.getc();
+            pc.putc(a);
         }