Log the lora frequency error when receiving a packet. (#8343)

This commit is contained in:
Jonathan Bennett
2025-10-15 06:34:28 -05:00
committed by GitHub
parent 9a8aeb25ab
commit 4e0a4cc45f
3 changed files with 3 additions and 0 deletions

View File

@@ -218,6 +218,7 @@ template <typename T> void LR11x0Interface<T>::addReceiveMetadata(meshtastic_Mes
// LOG_DEBUG("PacketStatus %x", lora.getPacketStatus());
mp->rx_snr = lora.getSNR();
mp->rx_rssi = lround(lora.getRSSI());
LOG_DEBUG("Corrected frequency offset: %f", lora.getFrequencyError());
}
/** We override to turn on transmitter power as needed.