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.
Fork of Lab7-01_template by
main.cpp@0:bdbd3d6fc5d5, 2012-12-07 (annotated)
- Committer:
- mbed_official
- Date:
- Fri Dec 07 11:25:01 2012 +0000
- Revision:
- 0:bdbd3d6fc5d5
- Child:
- 2:1c5cdb2c3e0f
First commit of SDFileSystem Hello World
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_official | 0:bdbd3d6fc5d5 | 1 | #include "mbed.h" |
| mbed_official | 0:bdbd3d6fc5d5 | 2 | #include "SDFileSystem.h" |
| mbed_official | 0:bdbd3d6fc5d5 | 3 | |
| mbed_official | 0:bdbd3d6fc5d5 | 4 | SDFileSystem sd(p5, p6, p7, p8, "sd"); // the pinout on the mbed Cool Components workshop board |
| mbed_official | 0:bdbd3d6fc5d5 | 5 | |
| mbed_official | 0:bdbd3d6fc5d5 | 6 | int main() { |
| mbed_official | 0:bdbd3d6fc5d5 | 7 | printf("Hello World!\n"); |
| mbed_official | 0:bdbd3d6fc5d5 | 8 | |
| mbed_official | 0:bdbd3d6fc5d5 | 9 | mkdir("/sd/mydir", 0777); |
| mbed_official | 0:bdbd3d6fc5d5 | 10 | |
| mbed_official | 0:bdbd3d6fc5d5 | 11 | FILE *fp = fopen("/sd/mydir/sdtest.txt", "w"); |
| mbed_official | 0:bdbd3d6fc5d5 | 12 | if(fp == NULL) { |
| mbed_official | 0:bdbd3d6fc5d5 | 13 | error("Could not open file for write\n"); |
| mbed_official | 0:bdbd3d6fc5d5 | 14 | } |
| mbed_official | 0:bdbd3d6fc5d5 | 15 | fprintf(fp, "Hello fun SD Card World!"); |
| mbed_official | 0:bdbd3d6fc5d5 | 16 | fclose(fp); |
| mbed_official | 0:bdbd3d6fc5d5 | 17 | |
| mbed_official | 0:bdbd3d6fc5d5 | 18 | printf("Goodbye World!\n"); |
| mbed_official | 0:bdbd3d6fc5d5 | 19 | } |
