Test program to eventually talk to the xdot

Dependencies:   ATParser mbed

Files at this revision

API Documentation at this revision

Comitter:
bhimebau
Date:
Tue Apr 03 19:48:31 2018 +0000
Commit message:
Initial build;

Changed in this revision

ATParser.lib Show annotated file Show diff for this revision Revisions of this file
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
diff -r 000000000000 -r 4dd6ba25f7df ATParser.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ATParser.lib	Tue Apr 03 19:48:31 2018 +0000
@@ -0,0 +1,1 @@
+http://os.mbed.com/teams/components/code/ATParser/#6b8190f55d83
diff -r 000000000000 -r 4dd6ba25f7df main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Apr 03 19:48:31 2018 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+Serial pc(SERIAL_TX, SERIAL_RX, 115200);
+Serial device(PA_9, PA_10, 115200);  // tx, rx
+
+DigitalOut myled(LED1);
+ 
+int main() {    
+    pc.putc('a');
+    while(1) {
+        if(pc.readable()) {
+            device.putc(pc.getc());
+            myled = !myled;
+        }
+        if(device.readable()) {
+            pc.putc(device.getc());
+            myled = !myled;
+        }
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r 4dd6ba25f7df mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Apr 03 19:48:31 2018 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/994bdf8177cb
\ No newline at end of file