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-10-05
Revision:
2:8c5b6522139f
Parent:
0:c05b00be2229

File content as of revision 2:8c5b6522139f:

#ifndef SDCARD_H
#define SDCARD_H

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


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





#endif