Daniel Blomdahl / SDFileSystem

Dependencies:   FATFileSystem

Fork of SDFileSystem by Neil Thiessen

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?

UserRevisionLine numberNew 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);