initial

Dependencies:   mbed BSP_DISCO_F746NG mbed-dsp

Revision:
8:e66f32a7e3e7
Parent:
7:88543caf2b6e
Child:
9:fb0eb0b2796c
--- a/signal_processing.cpp	Fri Mar 06 19:09:04 2020 +0000
+++ b/signal_processing.cpp	Tue Mar 10 20:22:52 2020 +0000
@@ -178,9 +178,7 @@
             result += padded_filter[i + shift] * d_in[sig_length - i - 1];
         }
         
-        // overlap-add to the buffer
-        //overlap_buffer[shift] += result;
-        
+        // overlap-add to the buffer      
         if(shift < sig_length)
         {
             d_out[shift] = overlap_buffer[shift] + result;