Updated

Dependents:   PROJECTTEST

SDCard.hpp

Committer:
Swabey89
Date:
2019-01-05
Revision:
0:1b17fef4fd93

File content as of revision 0:1b17fef4fd93:

#ifndef __SD_CARD__
#define __SD_CARD__

#include "mbed.h"
#include "mbed_events.h"
#include "main.h"
#include "LCDdisplay.hpp"
#include "sample_hardware.hpp"
#include "serial_terminal.hpp"

extern char fileDir[30];;

extern void SDcard(void);
extern void SDmount(void);
extern void SDread(int n);
extern void SDaddSample(string timedata, double temp, double pressure, float light, int buffind);
extern void SDdelete(int n);
extern void SD_toutISR(void);

#endif