Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed SDFileSystem
Revision 2:c56eaffc2192, committed 2022-02-07
- Comitter:
- kosukesuzuki
- Date:
- Mon Feb 07 03:22:12 2022 +0000
- Parent:
- 1:e4d7342be507
- Commit message:
- mbed lpc;
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue May 16 05:18:55 2017 +0000 +++ b/main.cpp Mon Feb 07 03:22:12 2022 +0000 @@ -1,19 +1,23 @@ #include "mbed.h" #include "SDFileSystem.h" - + +DigitalOut myled(LED1); + SDFileSystem sd(p5, p6, p7, p8, "sd"); // the pinout on the mbed Cool Components workshop board int main() { - printf("Hello World!\n"); - - mkdir("/sd/mydir", 0777); - - FILE *fp = fopen("/sd/mydir/sdtest.txt", "w"); + printf("Hello World!\n"); + mkdir("/sd/mydir999", 0777); + FILE *fp = fopen("/sd/mydir999/sdtesta.txt", "w"); + myled=1; + wait(0.2); + myled=0; if(fp == NULL) { error("Could not open file for write\n"); + } - fprintf(fp, "Hello fun SD Card World!"); - fclose(fp); + fprintf(fp, "1234567890-+ gatxyz"); + fclose(fp); printf("Goodbye World!\n"); }