From 4a557f51627c4469acb68bf2a051a7224665d65e Mon Sep 17 00:00:00 2001 From: jgromes Date: Sat, 15 Feb 2025 14:57:36 +0100 Subject: [PATCH] [PHY] Add missing member variable init --- src/protocols/PhysicalLayer/PhysicalLayer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/protocols/PhysicalLayer/PhysicalLayer.cpp b/src/protocols/PhysicalLayer/PhysicalLayer.cpp index b2e61d7d..e698092c 100644 --- a/src/protocols/PhysicalLayer/PhysicalLayer.cpp +++ b/src/protocols/PhysicalLayer/PhysicalLayer.cpp @@ -3,6 +3,8 @@ #include PhysicalLayer::PhysicalLayer() { + this->freqStep = 1; + this->maxPacketLength = 1; #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE this->bufferBitPos = 0; this->bufferWritePos = 0;