From 935db5b58b8ebd8f2cc4dbdbc1b98a65a6e4241c Mon Sep 17 00:00:00 2001 From: Arjan Onwezen Date: Mon, 14 Jun 2021 18:15:42 +0200 Subject: [PATCH] Added radiosonde.txt --- firmware/baseband/proc_aprsrx.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/baseband/proc_aprsrx.hpp b/firmware/baseband/proc_aprsrx.hpp index b6634419..2d3c4568 100644 --- a/firmware/baseband/proc_aprsrx.hpp +++ b/firmware/baseband/proc_aprsrx.hpp @@ -125,7 +125,7 @@ private: uint32_t sample_bits { 0 }; uint32_t phase { }, phase_inc { }; int32_t sample_mixed { }, prev_mixed { }, sample_filtered { }, prev_filtered { }; - uint8_t last_bit = 0; + uint8_t last_bit; uint8_t ones_count = 0; uint8_t current_byte = 0; uint8_t byte_index = 0; @@ -136,7 +136,7 @@ private: bool wait_start { }; bool bit_value { }; - aprs::APRSPacket aprs_packet { }; + aprs::APRSPacket aprs_packet; void configure(const APRSRxConfigureMessage& message); void capture_config(const CaptureConfigMessage& message);