From 936eb262a117d98a94b39485ee4aa97a3e1bc70b Mon Sep 17 00:00:00 2001 From: jgromes Date: Sat, 5 Dec 2020 12:04:57 +0100 Subject: [PATCH] [RFM9x] Update markers for debug decoder --- src/modules/RFM9x/RFM95.cpp | 2 ++ src/modules/RFM9x/RFM96.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/modules/RFM9x/RFM95.cpp b/src/modules/RFM9x/RFM95.cpp index f2b4a302..b6a84e7e 100644 --- a/src/modules/RFM9x/RFM95.cpp +++ b/src/modules/RFM9x/RFM95.cpp @@ -16,6 +16,8 @@ int16_t RFM95::begin(float freq, float bw, uint8_t sf, uint8_t cr, uint8_t syncW // some other error return(state); } + RADIOLIB_DEBUG_PRINTLN(F("M\tSX1278")); + RADIOLIB_DEBUG_PRINTLN(F("M\tRFM95")); // configure settings not accessible by API state = config(); diff --git a/src/modules/RFM9x/RFM96.cpp b/src/modules/RFM9x/RFM96.cpp index c2f43f0e..d7854c9f 100644 --- a/src/modules/RFM9x/RFM96.cpp +++ b/src/modules/RFM9x/RFM96.cpp @@ -16,6 +16,8 @@ int16_t RFM96::begin(float freq, float bw, uint8_t sf, uint8_t cr, uint8_t syncW // some other error return(state); } + RADIOLIB_DEBUG_PRINTLN(F("M\tSX1278")); + RADIOLIB_DEBUG_PRINTLN(F("M\tRFM96")); // configure settings not accessible by API state = config();