fuck this

Dependencies:   BMP280

Committer:
mwthewsey
Date:
Tue Jan 09 08:57:57 2018 +0000
Revision:
12:03589f1d5c30
Parent:
11:b538e73841ae
Child:
19:40c721f01ed2
Sampling,LCD,Serial, SD working. Stability problem exists with RXISR!

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mwthewsey 12:03589f1d5c30 1 #ifndef __SDCard__
mwthewsey 12:03589f1d5c30 2 #define __SDCard__
mwthewsey 11:b538e73841ae 3
mwthewsey 11:b538e73841ae 4
mwthewsey 12:03589f1d5c30 5 enum SDCardStates;
mwthewsey 12:03589f1d5c30 6 extern bool SDCardPresent;
mwthewsey 12:03589f1d5c30 7 extern bool SDCardMounted;
mwthewsey 12:03589f1d5c30 8 extern unsigned short SDinternalIndex;
mwthewsey 12:03589f1d5c30 9 extern SDCardStates SDCurrentState;
mwthewsey 11:b538e73841ae 10
mwthewsey 12:03589f1d5c30 11 extern Thread SDCardThread;
mwthewsey 11:b538e73841ae 12
mwthewsey 12:03589f1d5c30 13 void SDCardInit(void);
mwthewsey 12:03589f1d5c30 14 void SDCardRemovedISR(void);
mwthewsey 12:03589f1d5c30 15 void SDCardInsertedISR(void);
mwthewsey 12:03589f1d5c30 16 void SDCardButtonISR(void);
mwthewsey 12:03589f1d5c30 17 void SDCardCode(void);
mwthewsey 11:b538e73841ae 18
mwthewsey 11:b538e73841ae 19 #endif