Check this one ! mbos setup changed, WTX hor pos changed, no font style check, no checksum check

Dependencies:   4DGL MODSERIAL mbed mbos

Fork of CDU_Mbed_21 by Engravity-CDU

Revision:
0:6f71ca095e78
Child:
2:cdc3ccd10040
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Nov 26 12:45:02 2012 +0000
@@ -0,0 +1,17 @@
+#include "mbed.h"
+ 
+DigitalOut led1(LED1); // TEST Led1
+
+
+void init_USB();
+ 
+main()
+{
+
+    init_USB();  // setup USB communication
+        
+    while (1) { // this is my endless main loop :
+        led1 = !led1; // : toggle LED1 to show this loop
+        wait(0.5);    // : can be interrupted ???????????
+    }
+}
\ No newline at end of file