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:
2:c2cfb0ebc3bd
Parent:
1:45627bbdeb69
Child:
3:df8fb1b5d868
--- a/sdCardReader.h	Tue Apr 03 22:41:46 2018 -0400
+++ b/sdCardReader.h	Wed Apr 04 16:17:34 2018 -0400
@@ -32,7 +32,6 @@
 	void write_uint16_t(uint16_t data, bool endline, FILE* fileToUse);
 	void write_uint32_t(uint32_t data, bool endline, FILE* fileToUse);
 
-
 	// Define file system
         FATFileSystem m_fs("fs");
 };