USB Device Programming class project. This project allows a Python/Tk program running on a PC host to monitor/control a test-CPU programmed into an altera development board.

Dependencies:   C12832_lcd USBDevice mbed-rtos mbed mmSPI

main.cpp

Committer:
gatedClock
Date:
2013-09-01
Revision:
0:9a314675a67d
Child:
2:08655e2bb776

File content as of revision 0:9a314675a67d:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
    }
}