SD File System

Dependencies:   FATFileSystem

Fork of SDFileSystem by Neil Thiessen

Committer:
DanielBlomdahl
Date:
Wed Apr 06 05:58:29 2016 +0000
Revision:
26:e5fedb635c69
Parent:
25:62b71695d0da
Temp2 added to the code

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 25:62b71695d0da 3 #ifndef SDSAVEFUNCTION_H
DanielBlomdahl 25:62b71695d0da 4 #define SDSAVEFUNCTION_H
DanielBlomdahl 25:62b71695d0da 5
DanielBlomdahl 23:ab7d8030ac94 6 #include "mbed.h"
DanielBlomdahl 23:ab7d8030ac94 7
DanielBlomdahl 23:ab7d8030ac94 8
DanielBlomdahl 25:62b71695d0da 9 int mountSDCard(void);
DanielBlomdahl 23:ab7d8030ac94 10
DanielBlomdahl 25:62b71695d0da 11 int openDataFile(void);
DanielBlomdahl 23:ab7d8030ac94 12
DanielBlomdahl 25:62b71695d0da 13 int closeDataFile(void);
DanielBlomdahl 23:ab7d8030ac94 14
DanielBlomdahl 26:e5fedb635c69 15 void writeData(float, float, float, float);
DanielBlomdahl 25:62b71695d0da 16
DanielBlomdahl 25:62b71695d0da 17 #endif