SD File System

Dependencies:   FATFileSystem

Fork of SDFileSystem by Neil Thiessen

SDSaveFunction.h

Committer:
DanielBlomdahl
Date:
2016-04-06
Revision:
26:e5fedb635c69
Parent:
25:62b71695d0da

File content as of revision 26:e5fedb635c69:

// Header file to give functions for the SD card save function

#ifndef SDSAVEFUNCTION_H
#define SDSAVEFUNCTION_H

#include "mbed.h"


int mountSDCard(void);

int openDataFile(void);

int closeDataFile(void);

void writeData(float, float, float, float);

#endif