Mercurial > public > ostc4
diff Discovery/Src/text_multilanguage.c @ 949:c6b858f2e025 Evo_2_23
GNSS UTC in Date-Time menu:
The UTC time provided by the gnss module is not shown in the date-time settings menu. If a valid time signal is available then the OSTC RTC may be set to it by selecting the UTC menu entry. The time zone has to be selected manually. This is possible using a separate edit line.
author | Ideenmodellierer |
---|---|
date | Sun, 22 Dec 2024 21:19:21 +0100 |
parents | 44599695df41 |
children |
line wrap: on
line diff
--- a/Discovery/Src/text_multilanguage.c Sun Dec 22 21:15:05 2024 +0100 +++ b/Discovery/Src/text_multilanguage.c Sun Dec 22 21:19:21 2024 +0100 @@ -1987,7 +1987,11 @@ static uint8_t text_IT_YYMMDD[] = ""; static uint8_t text_ES_YYMMDD[] = ""; - +static uint8_t text_EN_TIMEZONE[] = "Time zone"; +static uint8_t text_DE_TIMEZONE[] = "Zeitzone"; +static uint8_t text_FR_TIMEZONE[] = ""; +static uint8_t text_IT_TIMEZONE[] = ""; +static uint8_t text_ES_TIMEZONE[] = ""; /* Lookup Table -------------------------------------------------------------*/ @@ -2295,6 +2299,7 @@ {(uint8_t)TXT2BYTE_DDMMYY, {text_EN_DDMMYY, text_DE_DDMMYY, text_FR_DDMMYY, text_IT_DDMMYY, text_ES_DDMMYY}}, {(uint8_t)TXT2BYTE_MMDDYY, {text_EN_MMDDYY, text_DE_MMDDYY, text_FR_MMDDYY, text_IT_MMDDYY, text_ES_MMDDYY}}, {(uint8_t)TXT2BYTE_YYMMDD, {text_EN_YYMMDD, text_DE_YYMMDD, text_FR_YYMMDD, text_IT_YYMMDD, text_ES_YYMMDD}}, + {(uint8_t)TXT2BYTE_TIMEZONE, {text_EN_TIMEZONE, text_DE_TIMEZONE, text_FR_TIMEZONE, text_IT_TIMEZONE, text_ES_TIMEZONE}},