Updated

Dependents:   PROJECTTEST

Committer:
Swabey89
Date:
Sat Jan 05 15:02:40 2019 +0000
Revision:
0:1b17fef4fd93
Updated

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Swabey89 0:1b17fef4fd93 1 #ifndef __SD_CARD__
Swabey89 0:1b17fef4fd93 2 #define __SD_CARD__
Swabey89 0:1b17fef4fd93 3
Swabey89 0:1b17fef4fd93 4 #include "mbed.h"
Swabey89 0:1b17fef4fd93 5 #include "mbed_events.h"
Swabey89 0:1b17fef4fd93 6 #include "main.h"
Swabey89 0:1b17fef4fd93 7 #include "LCDdisplay.hpp"
Swabey89 0:1b17fef4fd93 8 #include "sample_hardware.hpp"
Swabey89 0:1b17fef4fd93 9 #include "serial_terminal.hpp"
Swabey89 0:1b17fef4fd93 10
Swabey89 0:1b17fef4fd93 11 extern char fileDir[30];;
Swabey89 0:1b17fef4fd93 12
Swabey89 0:1b17fef4fd93 13 extern void SDcard(void);
Swabey89 0:1b17fef4fd93 14 extern void SDmount(void);
Swabey89 0:1b17fef4fd93 15 extern void SDread(int n);
Swabey89 0:1b17fef4fd93 16 extern void SDaddSample(string timedata, double temp, double pressure, float light, int buffind);
Swabey89 0:1b17fef4fd93 17 extern void SDdelete(int n);
Swabey89 0:1b17fef4fd93 18 extern void SD_toutISR(void);
Swabey89 0:1b17fef4fd93 19
Swabey89 0:1b17fef4fd93 20 #endif