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
SDSaveFunction.h@24:ee4f7224a2a5, 2016-03-31 (annotated)
- Committer:
- DanielBlomdahl
- Date:
- Thu Mar 31 15:47:36 2016 +0000
- Revision:
- 24:ee4f7224a2a5
- Parent:
- 23:ab7d8030ac94
- Child:
- 25:62b71695d0da
Success March 31 after editing the code form the previous thursday. First success from sd save file system
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
DanielBlomdahl | 23:ab7d8030ac94 | 1 | // Header file to give functions for the SD card save function |
DanielBlomdahl | 23:ab7d8030ac94 | 2 | |
DanielBlomdahl | 23:ab7d8030ac94 | 3 | #include "mbed.h" |
DanielBlomdahl | 23:ab7d8030ac94 | 4 | |
DanielBlomdahl | 23:ab7d8030ac94 | 5 | |
DanielBlomdahl | 23:ab7d8030ac94 | 6 | int mountSDCard(); |
DanielBlomdahl | 23:ab7d8030ac94 | 7 | |
DanielBlomdahl | 23:ab7d8030ac94 | 8 | int openDataFile(); |
DanielBlomdahl | 23:ab7d8030ac94 | 9 | |
DanielBlomdahl | 23:ab7d8030ac94 | 10 | int closeDataFile(); |
DanielBlomdahl | 23:ab7d8030ac94 | 11 | |
DanielBlomdahl | 24:ee4f7224a2a5 | 12 | void writeData(float, float, float); |