From e0bf15b80ed98bedc5f5b61b055037b41f42d26b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20G=C3=B6ttgens?= Date: Thu, 3 Aug 2023 09:31:16 +0200 Subject: [PATCH] trunk fmt --- src/gps/RTC.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gps/RTC.cpp b/src/gps/RTC.cpp index b2d397ed8..2bfb66e12 100644 --- a/src/gps/RTC.cpp +++ b/src/gps/RTC.cpp @@ -89,11 +89,11 @@ void readFromRTC() /** * Sets the RTC (Real-Time Clock) if the provided time is of higher quality than the current RTC time. - * + * * @param q The quality of the provided time. * @param tv A pointer to a timeval struct containing the time to potentially set the RTC to. * @return True if the RTC was set, false otherwise. - * + * * If we haven't yet set our RTC this boot, set it from a GPS derived time */ bool perhapsSetRTC(RTCQuality q, const struct timeval *tv) @@ -165,7 +165,7 @@ bool perhapsSetRTC(RTCQuality q, const struct timeval *tv) /** * Sets the RTC time if the provided time is of higher quality than the current RTC time. - * + * * @param q The quality of the provided time. * @param t The time to potentially set the RTC to. * @return True if the RTC was set to the provided time, false otherwise.