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

Dependencies:   UITDSP_ADDA mbed

Files at this revision

API Documentation at this revision

Comitter:
MikamiUitOpen
Date:
Sat Jul 25 07:22:14 2015 +0000
Parent:
4:c47516c7febf
Commit message:
6

Changed in this revision

UITDSP_ADDA.lib Show annotated file Show diff for this revision Revisions of this file
UIT_ADDA.lib Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
diff -r c47516c7febf -r 3568300a78d8 UITDSP_ADDA.lib
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/UITDSP_ADDA.lib	Sat Jul 25 07:22:14 2015 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/MikamiUitOpen/code/UITDSP_ADDA/#543daa087bd5
diff -r c47516c7febf -r 3568300a78d8 UIT_ADDA.lib
--- a/UIT_ADDA.lib	Sat Nov 15 06:35:08 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1 +0,0 @@
-http://developer.mbed.org/users/MikamiUitOpen/code/UIT_ADDA/#c326d04aa6b8
diff -r c47516c7febf -r 3568300a78d8 main.cpp
--- a/main.cpp	Sat Nov 15 06:35:08 2014 +0000
+++ b/main.cpp	Sat Jul 25 07:22:14 2015 +0000
@@ -1,19 +1,19 @@
 //--------------------------------------------------------------
 // Reverb system using comb filter and allpass filter
-// 2014/11/12, Copyright (c) 2014 MIKAMI, Naoki
+//      sw number = even : No reverb
+//      sw number = odd  : Reverb
+// 2015/07/25, Copyright (c) 2015 MIKAMI, Naoki
 //--------------------------------------------------------------
 
-#include "mbed.h"
-
-#include "ADC_Base.hpp"         // for ADC not using interrupt
-#include "DAC_MCP4922.hpp"      // for DAC MCP4922
+#include "ADC_BuiltIn.hpp"      // for ADC not using interrupt
+#include "DAC_MCP4921.hpp"      // for DAC MCP4921, MCP4922
 #include "reverb_unit.hpp"
 
 using namespace Mikami;
 
-const int FS_ = 12000;  // Sampling frequency: 12 kHz
-ADC_Base adc_(A0, FS_); // for AD
-DAC_MCP4922 myDac_;     // for DA
+const int FS_ = 12000;      // Sampling frequency: 12 kHz
+ADC_BuiltIn adc_(A0, FS_);  // for AD
+DAC_MCP4921 myDac_;         // for DA
 
 const float G_C_ = 0.8f;
 const float G_A_ = 0.6f;
diff -r c47516c7febf -r 3568300a78d8 mbed.bld
--- a/mbed.bld	Sat Nov 15 06:35:08 2014 +0000
+++ b/mbed.bld	Sat Jul 25 07:22:14 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/031413cf7a89
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/bad568076d81
\ No newline at end of file