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: FatFileSystem mbed
Fork of 4180_Lab2_USB by
main.cpp
- Committer:
- chris
- Date:
- 2010-09-13
- Revision:
- 0:4e756c4c88a7
- Child:
- 1:fca955be2a5b
File content as of revision 0:4e756c4c88a7:
#include "mbed.h" #include "MSCFileSystem.h" MSCFileSystem fs ("fs"); int main () { FILE *fp = fopen("/fs/hello.txt","w"); fprintf(fp,"Hello world!\n"); fclose (fp); }