doppler shift / Mbed 2 deprecated STM32_ADC_InternalChannels

Dependencies:   mbed

Revision:
1:2cebb75d319e
Parent:
0:ea607cf8589c
--- 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);
         }