Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 949:c6b858f2e025 Evo_2_23 tip
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 |
comparison
equal
deleted
inserted
replaced
948:abdd72c8b567 | 949:c6b858f2e025 |
---|---|
1985 static uint8_t text_DE_YYMMDD[] = "JJMMTT"; | 1985 static uint8_t text_DE_YYMMDD[] = "JJMMTT"; |
1986 static uint8_t text_FR_YYMMDD[] = ""; | 1986 static uint8_t text_FR_YYMMDD[] = ""; |
1987 static uint8_t text_IT_YYMMDD[] = ""; | 1987 static uint8_t text_IT_YYMMDD[] = ""; |
1988 static uint8_t text_ES_YYMMDD[] = ""; | 1988 static uint8_t text_ES_YYMMDD[] = ""; |
1989 | 1989 |
1990 | 1990 static uint8_t text_EN_TIMEZONE[] = "Time zone"; |
1991 static uint8_t text_DE_TIMEZONE[] = "Zeitzone"; | |
1992 static uint8_t text_FR_TIMEZONE[] = ""; | |
1993 static uint8_t text_IT_TIMEZONE[] = ""; | |
1994 static uint8_t text_ES_TIMEZONE[] = ""; | |
1991 | 1995 |
1992 /* Lookup Table -------------------------------------------------------------*/ | 1996 /* Lookup Table -------------------------------------------------------------*/ |
1993 | 1997 |
1994 const tText text_array[] = | 1998 const tText text_array[] = |
1995 { | 1999 { |
2293 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, | 2297 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, |
2294 {(uint8_t)TXT2BYTE_Log, {text_EN_Log, text_DE_Log, text_FR_Log, text_IT_Log, text_ES_Log}}, | 2298 {(uint8_t)TXT2BYTE_Log, {text_EN_Log, text_DE_Log, text_FR_Log, text_IT_Log, text_ES_Log}}, |
2295 {(uint8_t)TXT2BYTE_DDMMYY, {text_EN_DDMMYY, text_DE_DDMMYY, text_FR_DDMMYY, text_IT_DDMMYY, text_ES_DDMMYY}}, | 2299 {(uint8_t)TXT2BYTE_DDMMYY, {text_EN_DDMMYY, text_DE_DDMMYY, text_FR_DDMMYY, text_IT_DDMMYY, text_ES_DDMMYY}}, |
2296 {(uint8_t)TXT2BYTE_MMDDYY, {text_EN_MMDDYY, text_DE_MMDDYY, text_FR_MMDDYY, text_IT_MMDDYY, text_ES_MMDDYY}}, | 2300 {(uint8_t)TXT2BYTE_MMDDYY, {text_EN_MMDDYY, text_DE_MMDDYY, text_FR_MMDDYY, text_IT_MMDDYY, text_ES_MMDDYY}}, |
2297 {(uint8_t)TXT2BYTE_YYMMDD, {text_EN_YYMMDD, text_DE_YYMMDD, text_FR_YYMMDD, text_IT_YYMMDD, text_ES_YYMMDD}}, | 2301 {(uint8_t)TXT2BYTE_YYMMDD, {text_EN_YYMMDD, text_DE_YYMMDD, text_FR_YYMMDD, text_IT_YYMMDD, text_ES_YYMMDD}}, |
2302 {(uint8_t)TXT2BYTE_TIMEZONE, {text_EN_TIMEZONE, text_DE_TIMEZONE, text_FR_TIMEZONE, text_IT_TIMEZONE, text_ES_TIMEZONE}}, | |
2298 | 2303 |
2299 | 2304 |
2300 | 2305 |
2301 }; | 2306 }; |