Daniel Blomdahl / SDFileSystem

Dependencies:   FATFileSystem

Fork of SDFileSystem by Neil Thiessen

SDSaveFunction.h

Committer:
DanielBlomdahl
Date:
2016-03-31
Revision:
25:62b71695d0da
Parent:
24:ee4f7224a2a5
Child:
26:e5fedb635c69

File content as of revision 25:62b71695d0da:

// 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);

#endif