Mercurial > public > ostc4
diff Discovery/Src/data_central.c @ 302:eba8d1eb5bef cleanup-4
bugfix, cleanup: keep both is_ambient_pressure_close_to_surface in sync
The CPU1 firmware used 40cm of water pressure, and the RTE used 1m of
water pressure to detect between diving and surface state. This is
simply wrong, and can lead to small, rounding like, errors.
Use 1m water pressure as "official" depth things count as diving.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
author | Jan Mulder <jlmulder@xs4all.nl> |
---|---|
date | Mon, 20 May 2019 10:13:44 +0200 |
parents | 5ca177d2df5d |
children | 95928ef3986f |
line wrap: on
line diff
--- a/Discovery/Src/data_central.c Mon May 20 10:05:27 2019 +0200 +++ b/Discovery/Src/data_central.c Mon May 20 10:13:44 2019 +0200 @@ -760,10 +760,10 @@ return (cm_crc(&crc_model)); } - +// This code is also in RTE. Keep it in sync when editing _Bool is_ambient_pressure_close_to_surface(SLifeData *lifeData) { - if(lifeData->pressure_ambient_bar < (lifeData->pressure_surface_bar + 0.04f)) + if(lifeData->pressure_ambient_bar < (lifeData->pressure_surface_bar + 0.1f)) return true; else return false;