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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FrequancyResponseBase.hpp Source File

FrequancyResponseBase.hpp

00001 
00002 #ifndef FREQUENCY_RESPONSE_BASE_HPP
00003 #define FREQUENCY_RESPONSE_BASE_HPP
00004 
00005 #include <complex>  // requisite for complex
00006 
00007 namespace Mikami
00008 {
00009     typedef complex<float> Complex; // define "Complex"
00010 
00011     class FrequencyResponse
00012     {
00013     public:
00014         // 周波数応答の絶対値を返す関数, 引数: z^(-1)
00015         virtual float AbsH_z(Complex u) = 0;
00016 
00017     protected:
00018         FrequencyResponse() {}
00019     };
00020 }
00021 #endif  // F746_FREQUENCY_RESPONSE_BASE_HPP