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

Committer:
LvdK
Date:
Mon Nov 26 12:45:02 2012 +0000
Revision:
0:6f71ca095e78
Child:
2:cdc3ccd10040
basis

Who changed what in which revision?

UserRevisionLine numberNew contents of line
LvdK 0:6f71ca095e78 1 #include "mbed.h"
LvdK 0:6f71ca095e78 2
LvdK 0:6f71ca095e78 3 DigitalOut led1(LED1); // TEST Led1
LvdK 0:6f71ca095e78 4
LvdK 0:6f71ca095e78 5
LvdK 0:6f71ca095e78 6 void init_USB();
LvdK 0:6f71ca095e78 7
LvdK 0:6f71ca095e78 8 main()
LvdK 0:6f71ca095e78 9 {
LvdK 0:6f71ca095e78 10
LvdK 0:6f71ca095e78 11 init_USB(); // setup USB communication
LvdK 0:6f71ca095e78 12
LvdK 0:6f71ca095e78 13 while (1) { // this is my endless main loop :
LvdK 0:6f71ca095e78 14 led1 = !led1; // : toggle LED1 to show this loop
LvdK 0:6f71ca095e78 15 wait(0.5); // : can be interrupted ???????????
LvdK 0:6f71ca095e78 16 }
LvdK 0:6f71ca095e78 17 }