My fork of the FATFileSystem (working)

Dependents:   DGWWebServer

Fork of FatFileSystem by mbed unsupported

main.cpp

Committer:
mbed_unsupported
Date:
2012-05-08
Revision:
0:97df4125f18d

File content as of revision 0:97df4125f18d:

#include "mbed.h"

DigitalOut myled(LED1);

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