SD File System

Dependencies:   FATFileSystem

Fork of SDFileSystem by Neil Thiessen

Files at this revision

API Documentation at this revision

Comitter:
DanielBlomdahl
Date:
Thu Mar 31 17:29:44 2016 +0000
Parent:
24:ee4f7224a2a5
Child:
26:e5fedb635c69
Commit message:
Success! time, random voltage, and correct temperature (of only one thermocouple) was correctly printed in Terminal and saved to the SD card. I still will have to add the second thermocouple and figure out the weird time output.

Changed in this revision

SDSaveFunction.h Show annotated file Show diff for this revision Revisions of this file
--- a/SDSaveFunction.h	Thu Mar 31 15:47:36 2016 +0000
+++ b/SDSaveFunction.h	Thu Mar 31 17:29:44 2016 +0000
@@ -1,12 +1,17 @@
 // Header file to give functions for the SD card save function
 
+#ifndef SDSAVEFUNCTION_H
+#define SDSAVEFUNCTION_H
+
 #include "mbed.h"
 
 
-int mountSDCard();
+int mountSDCard(void);
 
-int openDataFile();
+int openDataFile(void);
 
-int closeDataFile();
+int closeDataFile(void);
 
-void writeData(float, float, float);
\ No newline at end of file
+void writeData(float, float, float);
+
+#endif
\ No newline at end of file