Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 899:2225c467f1e9 Evo_2_23
Added data path and visualization for position data:
The GNSS data exchange is now initialized and triggered on a cyclic basis (once a second). RTE verion has been increased because of interface change. For now only the position data is shown in a T7 surface views. The functionality may be switched on/off using the compile switch ENABLE_GNSS.
author | Ideenmodellierer |
---|---|
date | Mon, 30 Sep 2024 21:56:05 +0200 |
parents | 608d3e918146 |
children | d4622533271d |
comparison
equal
deleted
inserted
replaced
898:fac13aa6ba93 | 899:2225c467f1e9 |
---|---|
1935 static uint8_t text_EN_Finished[] = "Finished"; | 1935 static uint8_t text_EN_Finished[] = "Finished"; |
1936 static uint8_t text_DE_Finished[] = "Beendet"; | 1936 static uint8_t text_DE_Finished[] = "Beendet"; |
1937 static uint8_t text_FR_Finished[] = "Fini"; | 1937 static uint8_t text_FR_Finished[] = "Fini"; |
1938 static uint8_t text_IT_Finished[] = "Finito"; | 1938 static uint8_t text_IT_Finished[] = "Finito"; |
1939 static uint8_t text_ES_Finished[] = "Terminado"; | 1939 static uint8_t text_ES_Finished[] = "Terminado"; |
1940 | |
1941 static uint8_t text_EN_Position[] = "Position"; | |
1942 static uint8_t text_DE_Position[] = "Position"; | |
1943 static uint8_t text_FR_Position[] = ""; | |
1944 static uint8_t text_IT_Position[] = ""; | |
1945 static uint8_t text_ES_Position[] = ""; | |
1940 | 1946 |
1941 static uint8_t text_EN_Page[] = "Page"; | 1947 static uint8_t text_EN_Page[] = "Page"; |
1942 static uint8_t text_DE_Page[] = "Blättern"; | 1948 static uint8_t text_DE_Page[] = "Blättern"; |
1943 static uint8_t text_FR_Page[] = "Défiler"; | 1949 static uint8_t text_FR_Page[] = "Défiler"; |
1944 static uint8_t text_IT_Page[] = "Scorrere"; | 1950 static uint8_t text_IT_Page[] = "Scorrere"; |
2238 | 2244 |
2239 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, | 2245 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, |
2240 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, | 2246 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, |
2241 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, | 2247 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, |
2242 | 2248 |
2249 {(uint8_t)TXT2BYTE_Position, {text_EN_Position, text_DE_Position, text_FR_Position, text_IT_Position, text_ES_Position}}, | |
2250 | |
2243 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}}, | 2251 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}}, |
2244 }; | 2252 }; |