From f6a5db349fd026b7f0f56a5b8b283e6d7b7c33db Mon Sep 17 00:00:00 2001 From: WillyJL Date: Tue, 23 Sep 2025 19:37:52 +0200 Subject: [PATCH] Consistent warning message --- src/gps/RTC.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gps/RTC.cpp b/src/gps/RTC.cpp index 10af90d08..8fb6c94e1 100644 --- a/src/gps/RTC.cpp +++ b/src/gps/RTC.cpp @@ -67,7 +67,7 @@ RTCSetResult readFromRTC() } return RTCSetResultSuccess; } else { - LOG_WARN("RV3028_RTC mismatch (0x%02X)", rtc_found.address); + LOG_WARN("RTC not found (found address 0x%02X)", rtc_found.address); } #elif defined(PCF8563_RTC) || defined(PCF85063_RTC) #if defined(PCF8563_RTC) @@ -202,7 +202,7 @@ RTCSetResult perhapsSetRTC(RTCQuality q, const struct timeval *tv, bool forceUpd LOG_DEBUG("RV3028_RTC setTime %02d-%02d-%02d %02d:%02d:%02d (%ld)", t->tm_year + 1900, t->tm_mon + 1, t->tm_mday, t->tm_hour, t->tm_min, t->tm_sec, printableEpoch); } else { - LOG_WARN("RV3028_RTC mismatch (0x%02X)", rtc_found.address); + LOG_WARN("RTC not found (found address 0x%02X)", rtc_found.address); } #elif defined(PCF8563_RTC) || defined(PCF85063_RTC) #if defined(PCF8563_RTC)