Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ELEC350_Project2 SDcard
Revision 0:0fc2cf27ff9e, committed 2018-11-07
- 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
