taichi yanagisawa
/
SDFileSystem_Load
udenokai sample
Revision 0:8cee9e4016c6, committed 2011-06-10
- Comitter:
- marishi
- Date:
- Fri Jun 10 17:55:54 2011 +0000
- Commit message:
Changed in this revision
diff -r 000000000000 -r 8cee9e4016c6 FATFileSystem.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/FATFileSystem.lib Fri Jun 10 17:55:54 2011 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_unsupported/code/fatfilesystem/ \ No newline at end of file
diff -r 000000000000 -r 8cee9e4016c6 TextLCD.lib --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/TextLCD.lib Fri Jun 10 17:55:54 2011 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/tlunzer/code/TextLCD/#a7c08c5305b3
diff -r 000000000000 -r 8cee9e4016c6 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Fri Jun 10 17:55:54 2011 +0000 @@ -0,0 +1,18 @@ +#include "mbed.h" +#include "SDFileSystem.h" + +SDFileSystem sd(p5, p6, p7, p8, "sd"); +const unsigned int MAX_LEN = 256; + +int main() { + FILE* fp = fopen("/sd/mydir/sdtest.txt", "r"); + if(fp == NULL) { + error("Could not open file for write\n"); + } + + char str[MAX_LEN]; + fgets(str,MAX_LEN-1,fp); + + printf(str); + fclose(fp); +} \ No newline at end of file
diff -r 000000000000 -r 8cee9e4016c6 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Fri Jun 10 17:55:54 2011 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/e2ac27c8e93e