Reverb system using parallel structure of comb filters and cascade structure of allpass filters for ST Nucleo F401RE.

Dependencies:   UITDSP_ADDA mbed

Revision:
3:c0d8eec43a4e
Parent:
1:51c85e0a6e1e
Child:
5:3568300a78d8
--- a/main.cpp	Mon Nov 10 10:02:02 2014 +0000
+++ b/main.cpp	Wed Nov 12 10:44:50 2014 +0000
@@ -1,14 +1,12 @@
 //--------------------------------------------------------------
 // Reverb system using comb filter and allpass filter
-// 2014/10/31, Copyright (c) 2014 MIKAMI, Naoki
+// 2014/11/12, Copyright (c) 2014 MIKAMI, Naoki
 //--------------------------------------------------------------
 
 #include "mbed.h"
 
 #include "ADC_Base.hpp"         // for ADC not using interrupt
 #include "DAC_MCP4922.hpp"      // for DAC MCP4922
-#include "ScfClockTim3.hpp"     // for clock supplied to SCF
-
 #include "reverb_unit.hpp"
 
 using namespace Mikami;
@@ -30,7 +28,7 @@
 
 int main()
 {
-    ScfClockTim3(500000);       // cutoff frequency: 5 kHz
+    myDac_.ScfClockTim3(500000);    // cutoff frequency: 5 kHz
 
     while (true)
     {