SDFileSystem, slightly modified for the ExoController

Dependencies:   SDFileSystem

Dependents:   Data-Management-Honka

Fork of SDFileSystem_HelloWorld by Bradley Perry

SDFile.h

Committer:
mzling
Date:
2014-12-17
Revision:
2:ec4d7e5fa68e
Child:
3:8f5903a77a13

File content as of revision 2:ec4d7e5fa68e:

#include "mbed.h"
#include "SDFileSystem.h"
#include <string>
#ifndef SDFILE_H
#define SDFILE_H
class SDFile
{
public:
    SDFile(std::string path, std::string filename);
    int *read(int *array, int length);
    void write(int *array, int length);

private:
    FILE *fp;
};
#endif