From 99a936fb3b4b51de011d0cc832c7faf45397389d Mon Sep 17 00:00:00 2001 From: jgromes Date: Sun, 26 May 2024 07:07:37 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=2099bb0?= =?UTF-8?q?2517323ca6325b507829225d259373812dc=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _physical_layer_8h_source.html | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/_physical_layer_8h_source.html b/_physical_layer_8h_source.html index f9aa3c5c..d89a2e00 100644 --- a/_physical_layer_8h_source.html +++ b/_physical_layer_8h_source.html @@ -273,15 +273,15 @@ $(document).ready(function(){initNavTree('_physical_layer_8h_source.html',''); i
529  size_t maxPacketLength;
530 
531  #if !RADIOLIB_EXCLUDE_DIRECT_RECEIVE
-
532  uint8_t bufferBitPos;
-
533  uint8_t bufferWritePos;
-
534  uint8_t bufferReadPos;
-
535  uint8_t buffer[RADIOLIB_STATIC_ARRAY_SIZE];
-
536  uint32_t syncBuffer;
-
537  uint32_t directSyncWord;
-
538  uint8_t directSyncWordLen;
-
539  uint32_t directSyncWordMask;
-
540  bool gotSync;
+
532  uint8_t bufferBitPos = 0;
+
533  uint8_t bufferWritePos = 0;
+
534  uint8_t bufferReadPos = 0;
+
535  uint8_t buffer[RADIOLIB_STATIC_ARRAY_SIZE] = { 0 };
+
536  uint32_t syncBuffer = 0;
+
537  uint32_t directSyncWord = 0;
+
538  uint8_t directSyncWordLen = 0;
+
539  uint32_t directSyncWordMask = 0;
+
540  bool gotSync = false;
541  #endif
542 
543  virtual Module* getMod() = 0;