Modifications in 4DGL library. Added CDU_hw_sw.h for version info. Added pins.h for hardware pin remapping

Dependencies:   4DGL-UC MODSERIAL mbed mbos

Fork of CDU_Mbed_30 by Engravity-CDU

main.cpp

Committer:
LvdK
Date:
2012-11-26
Revision:
0:6f71ca095e78
Child:
2:cdc3ccd10040

File content as of revision 0:6f71ca095e78:

#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 ???????????
    }
}