Mercurial > public > ostc4
comparison Discovery/Src/text_multilanguage.c @ 902:d4622533271d Evo_2_23
VPM table mode:
Because of the model maths, usage of float data type and so on it may happen that the TTS decreases during ascent and continues calculation of the vpm. To keep the values stable the vpm table mode has been introduces. Instead of continously calculation of the stops the stop time is decreased if the diver is close to a deco stop. If the table is violated (e.g. by not doing gas change) the table will be updated to the new, longer runtime. The table will not be switch back to a shorter version in case e.g. the missed gas change is performed
author | Ideenmodellierer |
---|---|
date | Wed, 02 Oct 2024 22:18:19 +0200 |
parents | 2225c467f1e9 |
children |
comparison
equal
deleted
inserted
replaced
901:e4e9acfde839 | 902:d4622533271d |
---|---|
1941 static uint8_t text_EN_Position[] = "Position"; | 1941 static uint8_t text_EN_Position[] = "Position"; |
1942 static uint8_t text_DE_Position[] = "Position"; | 1942 static uint8_t text_DE_Position[] = "Position"; |
1943 static uint8_t text_FR_Position[] = ""; | 1943 static uint8_t text_FR_Position[] = ""; |
1944 static uint8_t text_IT_Position[] = ""; | 1944 static uint8_t text_IT_Position[] = ""; |
1945 static uint8_t text_ES_Position[] = ""; | 1945 static uint8_t text_ES_Position[] = ""; |
1946 | |
1947 static uint8_t text_EN_VpmTable[] = "VPM table mode"; | |
1948 static uint8_t text_DE_VpmTable[] = "VPM Tabellenmodus"; | |
1949 static uint8_t text_FR_VpmTable[] = ""; | |
1950 static uint8_t text_IT_VpmTable[] = ""; | |
1951 static uint8_t text_ES_VpmTable[] = ""; | |
1946 | 1952 |
1947 static uint8_t text_EN_Page[] = "Page"; | 1953 static uint8_t text_EN_Page[] = "Page"; |
1948 static uint8_t text_DE_Page[] = "Blättern"; | 1954 static uint8_t text_DE_Page[] = "Blättern"; |
1949 static uint8_t text_FR_Page[] = "Défiler"; | 1955 static uint8_t text_FR_Page[] = "Défiler"; |
1950 static uint8_t text_IT_Page[] = "Scorrere"; | 1956 static uint8_t text_IT_Page[] = "Scorrere"; |
2245 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, | 2251 {(uint8_t)TXT2BYTE_Timer, {text_EN_Timer, text_DE_Timer, text_FR_Timer, text_IT_Timer, text_ES_Timer}}, |
2246 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, | 2252 {(uint8_t)TXT2BYTE_Starting, {text_EN_Starting, text_DE_Starting, text_FR_Starting, text_IT_Starting, text_ES_Starting}}, |
2247 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, | 2253 {(uint8_t)TXT2BYTE_Finished, {text_EN_Finished, text_DE_Finished, text_FR_Finished, text_IT_Finished, text_ES_Finished}}, |
2248 | 2254 |
2249 {(uint8_t)TXT2BYTE_Position, {text_EN_Position, text_DE_Position, text_FR_Position, text_IT_Position, text_ES_Position}}, | 2255 {(uint8_t)TXT2BYTE_Position, {text_EN_Position, text_DE_Position, text_FR_Position, text_IT_Position, text_ES_Position}}, |
2256 {(uint8_t)TXT2BYTE_VpmTable, {text_EN_VpmTable, text_DE_VpmTable, text_FR_VpmTable, text_IT_VpmTable, text_ES_VpmTable}}, | |
2250 | 2257 |
2251 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}}, | 2258 {(uint8_t)TXT2BYTE_Page, {text_EN_Page, text_DE_Page, text_FR_Page, text_IT_Page, text_ES_Page}}, |
2252 }; | 2259 }; |