HEPTA-Sat Training 2020 / Mbed 2 deprecated Lab1-03_serial_communication_signal

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
MEXT1
Date:
Thu Jul 02 08:49:55 2020 +0000
Commit message:
Lab1-03_serial_communication_signal

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Jul 02 08:49:55 2020 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+
+Serial pc(USBTX,USBRX);
+Serial sig(p13,p14);
+
+int main() {
+    char c;
+    while(1) {
+        c = pc.getc();
+        pc.putc(c);
+        sig.putc(c);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Thu Jul 02 08:49:55 2020 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/65be27845400
\ No newline at end of file