FIR Filter with coefficients count > 137 #966
-
Hi again. I use FIR Filter with coefficients created by the https://fiiir.com/ site that you suggested. I use one source file for all of the filters and just replace Coef in the code and use Sonic-Visualizer to check the spectrum. this is the code I used for filtering.
This is a low-pass filter with a 2k cutoff and 137 coef (coef used in this example)This is a high-pass filter with a 3k cutoff and 137 coef.This is a band-pass filter with a 3k-6k cutoff and 185 coef.and the last one is a band-pass filter with a 3k-6k cutoff and 621 coef. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Microcontrollers are very slow and the challenge is always to provide functionality within limited resources. Solutions
I assume you were using an ESP32, so if you use other microcontrollers the limit will be much lower. |
Beta Was this translation helpful? Give feedback.
Microcontrollers are very slow and the challenge is always to provide functionality within limited resources.
You need to make sure that you can provide the result within your requested sampling rate.
Solutions
I assume you were using an ESP32, so if you use other microcontrollers the limit will be much lower.