Filter: Get common processes out of the way

This commit is contained in:
muramura 2024-04-29 01:48:14 +09:00 committed by Andrew Tridgell
parent bcf0733ea9
commit 3a1e07d816
1 changed files with 1 additions and 3 deletions

View File

@ -46,13 +46,11 @@ template <class T>
void NotchFilter<T>::init(float sample_freq_hz, float center_freq_hz, float bandwidth_hz, float attenuation_dB)
{
// check center frequency is in the allowable range
initialised = false;
if ((center_freq_hz > 0.5 * bandwidth_hz) && (center_freq_hz < 0.5 * sample_freq_hz)) {
float A, Q;
initialised = false; // force center frequency change
calculate_A_and_Q(center_freq_hz, bandwidth_hz, attenuation_dB, A, Q);
init_with_A_and_Q(sample_freq_hz, center_freq_hz, A, Q);
} else {
initialised = false;
}
}