mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-05-08 04:56:50 +00:00
Add fir_taps_complex structure.
This commit is contained in:
parent
220b7b0a6a
commit
b9c2ba4053
@ -34,6 +34,13 @@ struct fir_taps_real {
|
|||||||
std::array<int16_t, N> taps;
|
std::array<int16_t, N> taps;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<size_t N>
|
||||||
|
struct fir_taps_complex {
|
||||||
|
float pass_frequency_normalized;
|
||||||
|
float stop_frequency_normalized;
|
||||||
|
std::array<complex16_t, N> taps;
|
||||||
|
};
|
||||||
|
|
||||||
// NBFM 16K0F3E emission type /////////////////////////////////////////////
|
// NBFM 16K0F3E emission type /////////////////////////////////////////////
|
||||||
|
|
||||||
// IFIR image-reject filter: fs=3072000, pass=8000, stop=344000, decim=8, fout=384000
|
// IFIR image-reject filter: fs=3072000, pass=8000, stop=344000, decim=8, fout=384000
|
||||||
|
Loading…
x
Reference in New Issue
Block a user