shrink moving average window size to ~5 min

This commit is contained in:
Alwin Berger 2024-10-18 13:18:44 +02:00
parent 735fc3e144
commit d4e6de3e80

View File

@ -116,7 +116,7 @@ pub struct InterruptShiftStage<E, EM, Z> {
#[allow(clippy::type_complexity)] #[allow(clippy::type_complexity)]
phantom: PhantomData<(E, EM, Z)>, phantom: PhantomData<(E, EM, Z)>,
interrup_config: Vec<(usize,u32)>, interrup_config: Vec<(usize,u32)>,
success: simple_moving_average::SingleSumSMA<f32, f32, 100> success: simple_moving_average::SingleSumSMA<f32, f32, 50>
} }
impl<E, EM, Z> InterruptShiftStage<E, EM, Z> impl<E, EM, Z> InterruptShiftStage<E, EM, Z>