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.
main.cpp
00001 #include "mbed.h" 00002 #include "string" 00003 #include "SDHCFileSystem.h" 00004 00005 SDFileSystem sd(p5, p6, p7, p8, "sd"); // mosi, miso, sclk, cs 00006 00007 int main() { 00008 00009 FILE *fp = fopen("/sd/myfile.txt", "w"); 00010 fprintf(fp, "\n\rHello World!\n\r"); 00011 fclose(fp); 00012 }
Generated on Tue Jul 12 2022 12:27:00 by
1.7.2