From 87bf46ed34447f65bd3ab1dbe75e5e9ae6e0089f Mon Sep 17 00:00:00 2001 From: Federico Maggi Date: Thu, 7 Nov 2019 20:14:29 +0100 Subject: [PATCH] CC1101::fixedPacketFormat now correctly sets _packetLengthConfig --- src/modules/CC1101.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/CC1101.cpp b/src/modules/CC1101.cpp index 81952792..bbfbb5a2 100644 --- a/src/modules/CC1101.cpp +++ b/src/modules/CC1101.cpp @@ -520,7 +520,7 @@ int16_t CC1101::fixedPacketLengthMode(uint8_t len) { } // all went well: cache the reg value - _packetLengthConfig = CC1101_LENGTH_CONFIG_VARIABLE; + _packetLengthConfig = CC1101_LENGTH_CONFIG_FIXED; return(state); }