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
Revision 1:2cebb75d319e, committed 2020-12-07
- 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 | 
--- 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);
         }