From 048b2543545bb68b140ea85dddc95dd2134d3f81 Mon Sep 17 00:00:00 2001 From: GullCode Date: Mon, 18 Apr 2022 22:45:16 +0200 Subject: [PATCH] Fixed uninitialized class members --- firmware/baseband/dsp_hilbert.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/baseband/dsp_hilbert.hpp b/firmware/baseband/dsp_hilbert.hpp index a4b56cd5d..7687ccb31 100644 --- a/firmware/baseband/dsp_hilbert.hpp +++ b/firmware/baseband/dsp_hilbert.hpp @@ -35,8 +35,8 @@ public: private: uint8_t n = 0; - SOSFilter<5> sos_i; - SOSFilter<5> sos_q; + SOSFilter<5> sos_i = {}; + SOSFilter<5> sos_q = {}; }; } /* namespace dsp */