fatfile for fish project

Fork of FatFileSystem by mbed unsupported

Committer:
mbed_unsupported
Date:
Tue May 08 11:28:44 2012 +0000
Revision:
0:97df4125f18d
Convert to mercurial

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_unsupported 0:97df4125f18d 1 #include "mbed.h"
mbed_unsupported 0:97df4125f18d 2
mbed_unsupported 0:97df4125f18d 3 DigitalOut myled(LED1);
mbed_unsupported 0:97df4125f18d 4
mbed_unsupported 0:97df4125f18d 5 int main() {
mbed_unsupported 0:97df4125f18d 6 while(1) {
mbed_unsupported 0:97df4125f18d 7 myled = 1;
mbed_unsupported 0:97df4125f18d 8 wait(0.2);
mbed_unsupported 0:97df4125f18d 9 myled = 0;
mbed_unsupported 0:97df4125f18d 10 wait(0.2);
mbed_unsupported 0:97df4125f18d 11 }
mbed_unsupported 0:97df4125f18d 12 }