Code for measuring the signal with a specified length and sampling rate, and saving it on a SD card.

Dependencies:   EALib I2S mbed

sdcard.h

Committer:
msamadani
Date:
2017-07-13
Revision:
0:c05b00be2229

File content as of revision 0:c05b00be2229:

#ifndef SDCARD_H
#define SDCARD_H

#include "MCIFileSystem.h"
#include "mbed.h"


void saveToSD(float signal[],int sig_length,char const *filename);





#endif