A set of data recording functions to locally store data in a circular buffer, with functions for offloading to an SD Card when convenient. dataRecorderr.h shows accessible functions to the main program - all direct SD operations are abstracted away by the library. When using this library, #include dataRecorder.h

Dependencies:   sd-driver_compatible_with_MAX32630FTHR

Fork of CircularBufferSDCardLib by Daniel Levine

Revision:
12:c09a50d9469a
Parent:
5:0a4ff027086c
--- a/sdCardReader.h	Tue Apr 10 23:49:52 2018 -0400
+++ b/sdCardReader.h	Fri Apr 27 02:11:18 2018 -0400
@@ -31,6 +31,12 @@
 		
 	void mountFileSystem();
 	void unmountFileSystem();
+
+
+	//Read and increment for keeping track of SDcard files
+	//Each file gets a new number
+	int readAndIncrement(string filename); 
+
 	
     private: