Mathew Swabey / SDCard

Dependents:   ELEC350_Project2 SDcard

Files at this revision

API Documentation at this revision

Comitter:
Swabey89
Date:
Wed Nov 07 17:21:24 2018 +0000
Child:
1:c3af0c26ded2
Commit message:
SD card thread that will deal with SD card events

Changed in this revision

SDCard.cpp Show annotated file Show diff for this revision Revisions of this file
SDCard.hpp Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDCard.cpp	Wed Nov 07 17:21:24 2018 +0000
@@ -0,0 +1,12 @@
+#include "SDCard.hpp"
+
+void SDcard()
+{
+    while(true)
+    {
+        //puts("SD Card alive");
+        //Thread::wait(3000);
+        
+        
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDCard.hpp	Wed Nov 07 17:21:24 2018 +0000
@@ -0,0 +1,9 @@
+#ifndef __sd_card__
+#define __sd_card__
+
+#include "mbed.h"
+#include "sample_hardware.hpp"
+
+void SDcard(void);
+
+#endif
\ No newline at end of file