diff options
author | Robert C. Helling <helling@atdotde.de> | 2015-02-07 21:02:02 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-02-10 14:56:33 -0800 |
commit | 8fa205a59dc221ad6739de62cdcafc3b655863f9 (patch) | |
tree | df22c23419f9764fe50854234495e84a21963ef6 /dive.c | |
parent | e44deed73409001e0cd874ebd0998feaf290f3a7 (diff) | |
download | subsurface-8fa205a59dc221ad6739de62cdcafc3b655863f9.tar.gz |
Be a bit more careful when deleting pO2 values
This patch adds tests if the computer is actually a Predator and
if the value is close to what we would have computed anyway.
[Dirk Hohndel: minor change to use same_string() ]
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -883,12 +883,28 @@ void update_setpoint_events(struct divecomputer *dc) if (dc->divemode == CCR) new_setpoint = prefs.defaultsetpoint; - if (dc->divemode == OC) + if (dc->divemode == OC && same_string(dc->model, "Shearwater Predator")) { // make sure there's no setpoint in the samples // this is an irreversible change - so switching a dive to OC // by mistake when it's actually CCR is _bad_ - for (int i = 0; i < dc->samples; i++) - dc->sample[i].setpoint.mbar = 0; + // So we make sure, this comes from a Predator and we only remove + // pO2 values we would have computed anyway. + struct event *ev = get_next_event(dc->events, "gaschange"); + struct gasmix *gasmix = get_gasmix_from_event(ev); + struct event *next = get_next_event(ev, "gaschange"); + + for (int i = 0; i < dc->samples; i++) { + struct gas_pressures pressures; + if (next && dc->sample[i].time.seconds >= next->time.seconds) { + ev = next; + gasmix = get_gasmix_from_event(ev); + next = get_next_event(ev, "gaschange"); + } + fill_pressures(&pressures, calculate_depth_to_mbar(dc->sample[i].depth.mm, dc->surface_pressure, 0), gasmix ,0, OC); + if (abs(dc->sample[i].setpoint.mbar - (int)(1000 * pressures.o2) <= 50)) + dc->sample[i].setpoint.mbar = 0; + } + } // an "SP change" event at t=0 is currently our marker for OC vs CCR // this will need to change to a saner setup, but for now we can just |