USB device stack; Added getter method for terminal_connected;
Fork of USBDevice by
Example of use:
#include "mbed.h" #include "USBSerial.h" USBSerial pc; DigitalOut blue_led(P0_20); int main() { blue_led = 1; while(!pc.getTerminal_connected()); //Wait for serial terminal to connect... while(1) { blue_led = 0; wait(0.2); blue_led = 1; wait(0.2); } }
Revisions of USBMIDI/MIDIMessage.h
Revision | Date | Message | Actions |
---|---|---|---|
25:7c72828865f3 | 2014-06-03 | Synchronized with git revision bcacbb9fbf3432829227430830cca4315b57c1b9 | File Diff Annotate |
11:eeb3cbbaa996 | 2013-08-05 | Bug fixes, added suppor for LPC1347 | File Diff Annotate |
1:80ab0d068708 | 2012-07-17 | Update USBDevice lib | File Diff Annotate |