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: SDFileSystem mbed
main.cpp
- Committer:
- mikawataru
- Date:
- 2016-06-17
- Revision:
- 0:c23011e1cae6
- Child:
- 1:a8cfc313a2ae
File content as of revision 0:c23011e1cae6:
#include "mbed.h"
#include "SDFileSystem.h"
SDFileSystem sd()//MOSI, MISO, SCLK, SSEL
DigitalOut myled(LED1);
int main() {
File *fp = fopen("/sd/test.txt", w);
fprintf(fp,"HelloWorld\n");
fclose(fp);
free(fp);
}