revised version of F746_SD_GraphicEqualizer

Dependencies:   BSP_DISCO_F746NG F746_GUI F746_SAI_IO FrequencyResponseDrawer LCD_DISCO_F746NG SDFileSystem_Warning_Fixed TS_DISCO_F746NG mbed

Fork of F746_SD_GraphicEqualizer by 不韋 呂

Files at this revision

API Documentation at this revision

Comitter:
MikamiUitOpen
Date:
Sat May 07 08:15:00 2016 +0000
Parent:
5:a5a4f9d7b26c
Child:
7:be29ba9c83b2
Commit message:
7

Changed in this revision

MyClasses_Functions/DesignerDrawer.cpp Show annotated file Show diff for this revision Revisions of this file
MyClasses_Functions/DesignerDrawer.hpp Show annotated file Show diff for this revision Revisions of this file
--- a/MyClasses_Functions/DesignerDrawer.cpp	Sat May 07 07:33:52 2016 +0000
+++ b/MyClasses_Functions/DesignerDrawer.cpp	Sat May 07 08:15:00 2016 +0000
@@ -1,7 +1,7 @@
 //------------------------------------------------------------------------------
 //  イコライザ用フィルタのパラメータを設定し,その周波数特性を描画するためのクラス
 //  
-//  2016/05/01, Copyright (c) 2016 MIKAMI, Naoki
+//  2016/05/07, Copyright (c) 2016 MIKAMI, Naoki
 //------------------------------------------------------------------------------
 
 #include "DesignerDrawer.hpp"
@@ -34,6 +34,7 @@
 
     DesignerDrawer::~DesignerDrawer()
     {
+        delete[] frqResp_;
         delete[] ck_;
         delete[] f0_;
         delete calculator_;
--- a/MyClasses_Functions/DesignerDrawer.hpp	Sat May 07 07:33:52 2016 +0000
+++ b/MyClasses_Functions/DesignerDrawer.hpp	Sat May 07 08:15:00 2016 +0000
@@ -54,7 +54,7 @@
         float *f0_;         // 中心周波数を格納する配列のポインタ
         GrEqParamsCalculator *calculator_;
         GrEqualizerFrqResp *frqResp_;   // フィルタの周波数応答に対応するオブジェクト
-        BiquadGrEq::Coefs *ck_;         // フィルタの係数        
+        BiquadGrEq::Coefs *ck_;         // フィルタの係数
         FrqRespDrawer *drawerObj_;
     };
 }