This commit is contained in:
2026-01-08 08:17:23 +01:00
parent 47b4a51ca2
commit eed612f457
3 changed files with 5 additions and 3 deletions

View File

@@ -75,7 +75,7 @@ void RTC_Set_From_BuildTime(void) {
(date[5] - '0');
uint8_t hour =
(time[0] - '0') * 10 + (time[1] - '0');
(time[0] - '0') * 10 + (time[1] - '0') - 1;
uint8_t min =
(time[3] - '0') * 10 + (time[4] - '0');
uint8_t sec =