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:
- 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); }