diff --git a/firmware/baseband/matched_filter.hpp b/firmware/baseband/matched_filter.hpp index 7925dadc..a1547901 100644 --- a/firmware/baseband/matched_filter.hpp +++ b/firmware/baseband/matched_filter.hpp @@ -77,7 +77,7 @@ private: decimation_phase = (decimation_phase + 1) % decimation_factor_; } - bool is_new_decimation_cycle() { + bool is_new_decimation_cycle() const { return (decimation_phase == 0); } };