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 SDFileSystem by
Revision 23:ab7d8030ac94, committed 2016-03-17
- Comitter:
- DanielBlomdahl
- Date:
- Thu Mar 17 16:13:19 2016 +0000
- Parent:
- 22:3fa5eaf48e81
- Child:
- 24:ee4f7224a2a5
- Commit message:
- Changed Dr. Larkin's closeDateFile function to closeDataFile. Created SDSaveFunction.h file. Personalized SDSaveFunction.cpp with temperature and voltage variables in the writeDataFunction.
Changed in this revision
| SDSaveFunction.h | Show annotated file Show diff for this revision Revisions of this file |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SDSaveFunction.h Thu Mar 17 16:13:19 2016 +0000 @@ -0,0 +1,12 @@ +// Header file to give functions for the SD card save function + +#include "mbed.h" + + +int mountSDCard(); + +int openDataFile(); + +int closeDataFile(); + +void writeData(); \ No newline at end of file
