Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 951:e9c37071933b Evo_2_23
Added vibration warning:
The internal buzzer of the GPIO_V2 may now be used as additional warning notificator. It can be activated using the check button in the customer view menu. The vibration will be active while the warning message is displayed in the dive window. In case the diver is in the menu then the warning will be active for a shorter duration.
author | Ideenmodellierer |
---|---|
date | Sun, 29 Dec 2024 18:29:56 +0100 |
parents | c6b858f2e025 |
children |
comparison
equal
deleted
inserted
replaced
950:922ee3d7d2f3 | 951:e9c37071933b |
---|---|
1990 static uint8_t text_EN_TIMEZONE[] = "Time zone"; | 1990 static uint8_t text_EN_TIMEZONE[] = "Time zone"; |
1991 static uint8_t text_DE_TIMEZONE[] = "Zeitzone"; | 1991 static uint8_t text_DE_TIMEZONE[] = "Zeitzone"; |
1992 static uint8_t text_FR_TIMEZONE[] = ""; | 1992 static uint8_t text_FR_TIMEZONE[] = ""; |
1993 static uint8_t text_IT_TIMEZONE[] = ""; | 1993 static uint8_t text_IT_TIMEZONE[] = ""; |
1994 static uint8_t text_ES_TIMEZONE[] = ""; | 1994 static uint8_t text_ES_TIMEZONE[] = ""; |
1995 | |
1996 static uint8_t text_EN_BUZZER[] = "Buzzer"; | |
1997 static uint8_t text_DE_BUZZER[] = "Vibration"; | |
1998 static uint8_t text_FR_BUZZER[] = ""; | |
1999 static uint8_t text_IT_BUZZER[] = ""; | |
2000 static uint8_t text_ES_BUZZER[] = ""; | |
1995 | 2001 |
1996 /* Lookup Table -------------------------------------------------------------*/ | 2002 /* Lookup Table -------------------------------------------------------------*/ |
1997 | 2003 |
1998 const tText text_array[] = | 2004 const tText text_array[] = |
1999 { | 2005 { |
2299 {(uint8_t)TXT2BYTE_DDMMYY, {text_EN_DDMMYY, text_DE_DDMMYY, text_FR_DDMMYY, text_IT_DDMMYY, text_ES_DDMMYY}}, | 2305 {(uint8_t)TXT2BYTE_DDMMYY, {text_EN_DDMMYY, text_DE_DDMMYY, text_FR_DDMMYY, text_IT_DDMMYY, text_ES_DDMMYY}}, |
2300 {(uint8_t)TXT2BYTE_MMDDYY, {text_EN_MMDDYY, text_DE_MMDDYY, text_FR_MMDDYY, text_IT_MMDDYY, text_ES_MMDDYY}}, | 2306 {(uint8_t)TXT2BYTE_MMDDYY, {text_EN_MMDDYY, text_DE_MMDDYY, text_FR_MMDDYY, text_IT_MMDDYY, text_ES_MMDDYY}}, |
2301 {(uint8_t)TXT2BYTE_YYMMDD, {text_EN_YYMMDD, text_DE_YYMMDD, text_FR_YYMMDD, text_IT_YYMMDD, text_ES_YYMMDD}}, | 2307 {(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}}, | 2308 {(uint8_t)TXT2BYTE_TIMEZONE, {text_EN_TIMEZONE, text_DE_TIMEZONE, text_FR_TIMEZONE, text_IT_TIMEZONE, text_ES_TIMEZONE}}, |
2303 | 2309 |
2310 {(uint8_t)TXT2BYTE_BUZZER, {text_EN_BUZZER, text_DE_BUZZER, text_FR_BUZZER, text_IT_BUZZER, text_ES_BUZZER}}, | |
2304 | 2311 |
2305 | 2312 |
2306 }; | 2313 }; |