comparison Discovery/Src/base.c @ 247:3949781096d4 bm-1

feature: Relative GF to Saturation renames Rename relevant code from Relative GF to Saturation. Involving UI elements, variable names, translated texts (that still need to be done), etc. No functional changes. Notice that I chose super_saturation as name, to provide a better link to the hwOS repo. Further notice that the TXT variable name is not changed. This is intensional, as there is also a desaturation variable, so things might get confusing renaming the TXT variable name. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
author Jan Mulder <jlmulder@xs4all.nl>
date Tue, 09 Apr 2019 16:30:21 +0200
parents 2c0b502b0a72
children ac2b06b5d09f
comparison
equal deleted inserted replaced
246:ff0d23625cd5 247:3949781096d4
1705 decoLock = DECO_CALC_FINSHED_Futurevpm; 1705 decoLock = DECO_CALC_FINSHED_Futurevpm;
1706 return; 1706 return;
1707 case CALC_BUEHLMANN: 1707 case CALC_BUEHLMANN:
1708 buehlmann_calc_deco(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistBuehlmann); 1708 buehlmann_calc_deco(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistBuehlmann);
1709 buehlmann_ceiling_calculator(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistBuehlmann); 1709 buehlmann_ceiling_calculator(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistBuehlmann);
1710 buehlmann_relative_gradient_calculator(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistBuehlmann); 1710 buehlmann_super_saturation_calculator(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistBuehlmann);
1711 decoLock = DECO_CALC_FINSHED_Buehlmann; 1711 decoLock = DECO_CALC_FINSHED_Buehlmann;
1712 return; 1712 return;
1713 case CALC_BUEHLMANN_FUTURE: 1713 case CALC_BUEHLMANN_FUTURE:
1714 decom_tissues_exposure(stateDeco.diveSettings.future_TTS_minutes * 60,&stateDeco.lifeData); 1714 decom_tissues_exposure(stateDeco.diveSettings.future_TTS_minutes * 60,&stateDeco.lifeData);
1715 buehlmann_calc_deco(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistFutureBuehlmann); 1715 buehlmann_calc_deco(&stateDeco.lifeData,&stateDeco.diveSettings,&stateDeco.decolistFutureBuehlmann);