diff --git a/src/ClockSupport.h b/src/ClockSupport.h index c553cfb8b..fa92a9f7b 100644 --- a/src/ClockSupport.h +++ b/src/ClockSupport.h @@ -378,6 +378,8 @@ class loggerClock { static epochStart _rtcEpoch; /** * @brief Get a raw epoch time from the RTC + * + * @return The raw epoch time from the RTC */ static uint32_t getRawRTCNow(); /** diff --git a/src/LoggerBase.h b/src/LoggerBase.h index 436bd904b..b3e12fbcb 100644 --- a/src/LoggerBase.h +++ b/src/LoggerBase.h @@ -786,10 +786,6 @@ class Logger { * @param fmt The strftime format string. * @param epochTime The number of seconds since the start of the given * epoch in the given offset from UTC. - * @param epochTimeUTCOffset The offset of the input epoch time from UTC in - * hours. - * @param epoch The epoch of the input epoch time. - * @return An ISO8601 formatted String. */ static void formatDateTime(char* buffer, const char* fmt, uint32_t epochTime); diff --git a/src/sensors/GeoluxHydroCam.h b/src/sensors/GeoluxHydroCam.h index b58153ac7..c0f007c67 100644 --- a/src/sensors/GeoluxHydroCam.h +++ b/src/sensors/GeoluxHydroCam.h @@ -257,7 +257,7 @@ class GeoluxHydroCam : public Sensor { * * This sets the image resolution and runs an autofocus. * - * @NOTE Autofocus takes approximately 30s to complete. Unless you plan to + * @note Autofocus takes approximately 30s to complete. Unless you plan to * move your device betwen readings, I recommend only running the autofocus * at setup, not at every power-up. *