Output the audio signal (*.bin) with filtering by IIR filter in the SD card using onboard CODEC. For *.wav file, F746_SD_WavPlayer and F746_SD_GraphicEqualiser are published on mbed. SD カードのオーディオ信号 (*.bin) を遮断周波数可変の IIR フィルタを通して,ボードに搭載されているCODEC で出力する.*.wav 形式のファイル用には,F746_SD_WavPlayer と F746_SD_GraphicEqualiser を mbed で公開している.

Dependencies:   BSP_DISCO_F746NG_patch_fixed F746_GUI LCD_DISCO_F746NG SDFileSystem_Warning_Fixed TS_DISCO_F746NG mbed

Revision:
5:4a99dabc9180
Parent:
0:6748e3332e85
--- a/MyClasses_Functions/sai_io_o.cpp	Sat Apr 16 13:53:53 2016 +0000
+++ b/MyClasses_Functions/sai_io_o.cpp	Sun Apr 17 08:44:43 2016 +0000
@@ -15,6 +15,11 @@
         tmp_ = new int16_t[size*2];
         xferred_ = false;
     }
+    SaiIO_O::~SaiIO_O()
+    {
+        delete[] tmp_;
+        delete[] outBuffer_;
+    }
 
     void SaiIO_O::InitCodecOut()
     {
@@ -75,3 +80,4 @@
     __IO bool SaiIO_O::xferred_;
 }
 
+