communication for safety project

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
Asimtaj
Date:
Tue Nov 21 18:59:54 2017 +0000
Commit message:
communication for master controller

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
diff -r 000000000000 -r 8fcca12e22fe main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Nov 21 18:59:54 2017 +0000
@@ -0,0 +1,19 @@
+#include "mbed.h"
+Serial pc(USBTX, USBRX);
+Serial uart(p28, p27);
+ 
+int count = 50;
+ 
+int main() {
+    pc.printf("%d",count);
+    while (1) {
+
+            char str[125]="";
+            sprintf(str, "%d", count);
+            if(uart.writeable())
+            {
+                uart.printf("%s\n",str);
+            }
+            
+    }
+}
\ No newline at end of file
diff -r 000000000000 -r 8fcca12e22fe mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Nov 21 18:59:54 2017 +0000
@@ -0,0 +1,1 @@
+https://os.mbed.com/users/mbed_official/code/mbed/builds/e7ca05fa8600
\ No newline at end of file