old demo that i want to try in mbed studio

Dependencies:   mbed SDFileSystem_Copy_of_mbed_version I2S

Committer:
roryhand
Date:
Sat May 16 21:25:28 2020 +0000
Branch:
LargeFile_Tests
Revision:
90:1dce46f0d9e5
Parent:
0:e89d7a0bfa3b
current version to try in mbed studio

Who changed what in which revision?

UserRevisionLine numberNew contents of line
roryhand 0:e89d7a0bfa3b 1 // This is start of the header guard.  ADD_H can be any unique name.  By convention, we use the name of the header file.
roryhand 0:e89d7a0bfa3b 2 /*#ifndef ADD_H
roryhand 0:e89d7a0bfa3b 3 #define ADD_H
roryhand 0:e89d7a0bfa3b 4  
roryhand 0:e89d7a0bfa3b 5 // This is the content of the .h file, which is where the declarations go
roryhand 0:e89d7a0bfa3b 6 void wm8731_Config(void) // function prototype for wm8731_Config.h -- don't forget the semicolon!
roryhand 0:e89d7a0bfa3b 7  
roryhand 0:e89d7a0bfa3b 8 // This is the end of the header guard
roryhand 0:e89d7a0bfa3b 9 #endif*/
roryhand 0:e89d7a0bfa3b 10
roryhand 0:e89d7a0bfa3b 11
roryhand 0:e89d7a0bfa3b 12 #ifndef WM8731_CONFIG_SETUP
roryhand 0:e89d7a0bfa3b 13 #define WM8731_CONFIG_SETUP
roryhand 0:e89d7a0bfa3b 14
roryhand 0:e89d7a0bfa3b 15 void wm8731_Config_setup(void); // function prototype for wm8731_Config.h -- don't forget the semicolon!
roryhand 0:e89d7a0bfa3b 16
roryhand 0:e89d7a0bfa3b 17 #endif