diff --git a/TNC/IirFilter.hpp b/TNC/IirFilter.hpp index d441147..41bfd16 100644 --- a/TNC/IirFilter.hpp +++ b/TNC/IirFilter.hpp @@ -28,6 +28,8 @@ struct IirFilter { static constexpr size_t size() { return N; } + void reset() { history_.fill(0.0f); } + float operator()(float input) {