comparison Discovery/Src/text_multilanguage.c @ 1032:33b91584d827 Puls_Integration

New CV Pulse: The basic infrastructure for external puls measurement via Bluetooth has been added. Precondition is an OSTC with an activated central role. The OSTC will then search for a BLE device with puls measurement service. Reading data and visualization is not implemented yet.
author Ideenmodellierer
date Mon, 28 Jul 2025 18:34:45 +0200
parents 53900dfe335b
children 5b913cdaa9dc
comparison
equal deleted inserted replaced
1031:cd4561c33758 1032:33b91584d827
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
2007 2015
2008 /* Lookup Table -------------------------------------------------------------*/ 2016 /* Lookup Table -------------------------------------------------------------*/
2009 2017
2010 const tText text_array[] = 2018 const tText text_array[] =
2011 { 2019 {
2317 2325
2318 {(uint8_t)TXT2BYTE_Current, {text_EN_Current, text_DE_Current, text_FR_Current, text_IT_Current, text_ES_Current}}, 2326 {(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}}, 2327 {(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}}, 2328 {(uint8_t)TXT2BYTE_Reverse, {text_EN_Reverse, text_DE_Reverse, text_FR_Reverse, text_IT_Reverse, text_ES_Reverse}},
2321 2329
2330 {(uint8_t)TXT2BYTE_Pulse, {text_EN_Pulse, text_DE_Pulse, text_FR_Pulse, text_IT_Pulse, text_ES_Pulse}},
2322 2331
2323 2332
2324 }; 2333 };