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
main.cpp
- Committer:
- kosukesuzuki
- Date:
- 2022-02-07
- Revision:
- 2:c56eaffc2192
- Parent:
- 0:bdbd3d6fc5d5
File content as of revision 2:c56eaffc2192:
#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/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, "1234567890-+ gatxyz");
fclose(fp);
printf("Goodbye World!\n");
}