Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 1037:2af07aa38531 GasConsumption
Merge with external development branches:
Some features have been prepared for integration: Profiles, DMA UART on Firmware part, Bluetooth discovery and messges logging for development phase. All these new function are deactivated by compile switch and may be activated using the configuration.h for testing purpose.
| author | Ideenmodellierer |
|---|---|
| date | Mon, 15 Sep 2025 21:12:44 +0200 |
| parents | 5b913cdaa9dc |
| children | 88b6ab90c55a |
comparison
equal
deleted
inserted
replaced
| 1029:e938901f6386 | 1037:2af07aa38531 |
|---|---|
| 2002 static uint8_t text_EN_Reverse[] = "Reverse"; | 2002 static uint8_t text_EN_Reverse[] = "Reverse"; |
| 2003 static uint8_t text_DE_Reverse[] = "Umkehren"; | 2003 static uint8_t text_DE_Reverse[] = "Umkehren"; |
| 2004 static uint8_t text_FR_Reverse[] = "Inverser"; | 2004 static uint8_t text_FR_Reverse[] = "Inverser"; |
| 2005 static uint8_t text_IT_Reverse[] = "Invertire"; | 2005 static uint8_t text_IT_Reverse[] = "Invertire"; |
| 2006 static uint8_t text_ES_Reverse[] = "Invertir"; | 2006 static uint8_t text_ES_Reverse[] = "Invertir"; |
| 2007 | |
| 2008 static uint8_t text_EN_Pulse[] = "Heartbeat sensor (BT)"; | |
| 2009 static uint8_t text_DE_Pulse[] = "Pulssensor (BT)"; | |
| 2010 static uint8_t text_FR_Pulse[] = ""; | |
| 2011 static uint8_t text_IT_Pulse[] = ""; | |
| 2012 static uint8_t text_ES_Pulse[] = ""; | |
| 2013 | |
| 2014 static uint8_t text_EN_Logger[] = "Debug Messages"; | |
| 2015 static uint8_t text_DE_Logger[] = "Logger"; | |
| 2016 static uint8_t text_FR_Logger[] = ""; | |
| 2017 static uint8_t text_IT_Logger[] = ""; | |
| 2018 static uint8_t text_ES_Logger[] = ""; | |
| 2007 | 2019 |
| 2008 /* Lookup Table -------------------------------------------------------------*/ | 2020 /* Lookup Table -------------------------------------------------------------*/ |
| 2009 | 2021 |
| 2010 const tText text_array[] = | 2022 const tText text_array[] = |
| 2011 { | 2023 { |
| 2317 | 2329 |
| 2318 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, | 2330 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, |
| 2319 {(uint8_t)TXT2BYTE_Log, {text_EN_Log, text_DE_Log, text_FR_Log, text_IT_Log, text_ES_Log}}, | 2331 {(uint8_t)TXT2BYTE_Log, {text_EN_Log, text_DE_Log, text_FR_Log, text_IT_Log, text_ES_Log}}, |
| 2320 {(uint8_t)TXT2BYTE_Reverse, {text_EN_Reverse, text_DE_Reverse, text_FR_Reverse, text_IT_Reverse, text_ES_Reverse}}, | 2332 {(uint8_t)TXT2BYTE_Reverse, {text_EN_Reverse, text_DE_Reverse, text_FR_Reverse, text_IT_Reverse, text_ES_Reverse}}, |
| 2321 | 2333 |
| 2334 {(uint8_t)TXT2BYTE_Pulse, {text_EN_Pulse, text_DE_Pulse, text_FR_Pulse, text_IT_Pulse, text_ES_Pulse}}, | |
| 2335 {(uint8_t)TXT2BYTE_Logger, {text_EN_Logger, text_DE_Logger, text_FR_Logger, text_IT_Logger, text_ES_Logger}}, | |
| 2322 | 2336 |
| 2323 | 2337 |
| 2324 }; | 2338 }; |
