From 68252f15f545787f91f389ecf7372d0a587db516 Mon Sep 17 00:00:00 2001 From: Clint Chance Date: Sun, 12 Jul 2026 16:45:24 -0500 Subject: [PATCH] Fix the FM 25kHz calibration debug message. It said 10kHz, a copy and paste from the case above. --- SerialPort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SerialPort.cpp b/SerialPort.cpp index 7c6eb0c..220af49 100644 --- a/SerialPort.cpp +++ b/SerialPort.cpp @@ -745,7 +745,7 @@ void CSerialPort::setMode(MMDVM_STATE modemState) DEBUG1("Mode set to FM 20Khz Calibrate"); break; case STATE_FMCAL25K: - DEBUG1("Mode set to FM 10Khz Calibrate"); + DEBUG1("Mode set to FM 25Khz Calibrate"); break; case STATE_FMCAL30K: DEBUG1("Mode set to FM 30Khz Calibrate");