mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-08-16 02:47:47 +00:00
Comments about IFIR filter taps design parameters.
This commit is contained in:
@@ -28,6 +28,7 @@ using namespace lpc43xx;
|
||||
|
||||
#include "dsp_fir_taps.hpp"
|
||||
|
||||
// IFIR image-reject filter: fs=2457600, pass=100000, stop=407200, decim=4, fout=614400
|
||||
static constexpr fir_taps_real<24> taps_200k_decim_0 = {
|
||||
.pass_frequency_normalized = 100000.0f / 2457600.0f,
|
||||
.stop_frequency_normalized = 407200.0f / 2457600.0f,
|
||||
@@ -38,6 +39,7 @@ static constexpr fir_taps_real<24> taps_200k_decim_0 = {
|
||||
} },
|
||||
};
|
||||
|
||||
// IFIR prototype filter: fs=614400, pass=100000, stop=207200, decim=2, fout=307200
|
||||
static constexpr fir_taps_real<16> taps_200k_decim_1 = {
|
||||
.pass_frequency_normalized = 100000.0f / 614400.0f,
|
||||
.stop_frequency_normalized = 207200.0f / 614400.0f,
|
||||
|
Reference in New Issue
Block a user