From 0dfa11a90987bf0858791bf269d7d980c29e8f9d Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Wed, 29 Oct 2025 22:35:54 -0500 Subject: [PATCH] Add missed debug log line in RF95 Interface (#8490) --- src/mesh/RF95Interface.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesh/RF95Interface.cpp b/src/mesh/RF95Interface.cpp index 0f32f3427..da0039d38 100644 --- a/src/mesh/RF95Interface.cpp +++ b/src/mesh/RF95Interface.cpp @@ -260,6 +260,7 @@ void RF95Interface::addReceiveMetadata(meshtastic_MeshPacket *mp) { mp->rx_snr = lora->getSNR(); mp->rx_rssi = lround(lora->getRSSI()); + LOG_DEBUG("Corrected frequency offset: %f", lora->getFrequencyError()); } void RF95Interface::setStandby()