Tyari Taylor / Mbed OS OS-RPC_Serial

Dependencies:   RPCInterface

Fork of OS-RPC_Serial by Advanced_Instrumentation

Files at this revision

API Documentation at this revision

Comitter:
billcooke51
Date:
Tue Jun 26 17:52:09 2018 +0000
Parent:
65:caf630d9c605
Child:
67:f3ca708f5187
Commit message:
wait seems to be 10s of seconds

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed May 02 06:30:02 2018 +0100
+++ b/main.cpp	Tue Jun 26 17:52:09 2018 +0000
@@ -6,7 +6,9 @@
 int main() {
     while (true) {
         led1 = !led1;
-        wait(0.5);
+        wait(0.02);
+        led1 = !led1;
+        wait(0.02);
     }
 }