Yuanda Zhu / Mbed 2 deprecated KeypadPiano

Dependencies:   4DGL-uLCD-SE SDFileSystem Speaker mbed wave_player

Fork of Beat_Demo_full_full by James Hawkins

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers wavfile.h Source File

wavfile.h

00001 #ifndef WAVFILE_H
00002 #define WAVFILE_H
00003 
00004 #include <stdio.h>
00005 #include <inttypes.h>
00006 
00007 FILE * wavfile_open( const char *filename );
00008 void wavfile_write( FILE *file, short data[], int length );
00009 void wavfile_close( FILE * file );
00010 
00011 #define WAVFILE_SAMPLES_PER_SECOND 4410//44100
00012 
00013 #endif