Output the audio signal with filtering by IIR filter in the *.wav file on the SD card using onboard CODEC. SD カードの *.wav ファイルのオーディオ信号を遮断周波数可変の IIR フィルタを通して,ボードに搭載されているCODEC で出力する.

Dependencies:   BSP_DISCO_F746NG F746_GUI LCD_DISCO_F746NG SDFileSystem_Warning_Fixed TS_DISCO_F746NG mbed FrequencyResponseDrawer F746_SAI_IO Array_Matrix

Revision:
9:fe097e4c9024
Parent:
7:2964179ff931
Child:
11:769d986c10fa
--- a/MyClasses_Functions/MyFunctions.cpp	Mon May 09 13:55:48 2016 +0000
+++ b/MyClasses_Functions/MyFunctions.cpp	Tue May 10 12:42:32 2016 +0000
@@ -7,7 +7,7 @@
 #include "MyFunctions.hpp"
 
 // 1フレーム分の信号処理 (IIR フィルタ) の実行
-void ProcessSignal(SD_WavReader &sdReader, SaiIO &mySai,
+void IIR_Filtering(SD_WavReader &sdReader, SaiIO &mySai,
                    int16_t sn[], float g0, Biquad hn[],
                    int order, bool filterOn)
 {
@@ -82,3 +82,4 @@
         }
 }
 
+