summaryrefslogtreecommitdiffstats
path: root/core/liquivision.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2017-07-20 14:39:02 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-20 17:32:54 -0700
commit11a0c0cc701806ccec975c67d27dec97fbb13b1f (patch)
tree15a3ace16588b80a88fea76cec30386414bfc3f7 /core/liquivision.c
parent94d8abd1a292ac0b02064c906da3a66ccf9e6737 (diff)
downloadsubsurface-11a0c0cc701806ccec975c67d27dec97fbb13b1f.tar.gz
Unify sample pressure and o2pressure as pressure[2] array
We currently carry two pressures around for all the samples and plot info, but the second pressure is reserved for CCR dives as the O2 cylinder pressure. That's kind of annoying when we *could* use it for regular sidemount dives as the secondary pressure. So start prepping for that instead: don't make it "pressure" and "o2pressure", make it just be an array of two pressure values. NOTE! This is purely mindless prepwork. It literally just does a search-and-replace, keeping the exact same semantics, so "pressure[1]" is still just O2 pressure. But at some future date, we can now start using it for a second sensor value for sidemount instead. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/liquivision.c')
-rw-r--r--core/liquivision.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/liquivision.c b/core/liquivision.c
index e4e5c5f80..3406bd3ab 100644
--- a/core/liquivision.c
+++ b/core/liquivision.c
@@ -335,7 +335,7 @@ static void parse_dives (int log_version, const unsigned char *buf, unsigned int
sample->depth.mm = array_uint16_le(ds + (d - 1) * 2) * 10; // cm->mm
sample->temperature.mkelvin = C_to_mkelvin((float) array_uint16_le(ts + (d - 1) * 2) / 10); // dC->mK
sample->sensor = event.pressure.sensor;
- sample->cylinderpressure.mbar = event.pressure.mbar;
+ sample->pressure[0].mbar = event.pressure.mbar;
finish_sample(dc);
break;
@@ -353,7 +353,7 @@ static void parse_dives (int log_version, const unsigned char *buf, unsigned int
sample->depth.mm = depth_mm;
sample->temperature.mkelvin = temp_mk;
sample->sensor = event.pressure.sensor;
- sample->cylinderpressure.mbar = event.pressure.mbar;
+ sample->pressure[0].mbar = event.pressure.mbar;
finish_sample(dc);
d++;
@@ -361,7 +361,7 @@ static void parse_dives (int log_version, const unsigned char *buf, unsigned int
} else { // Event is prior to sample
sample->time.seconds = event.time;
sample->sensor = event.pressure.sensor;
- sample->cylinderpressure.mbar = event.pressure.mbar;
+ sample->pressure[0].mbar = event.pressure.mbar;
if (last_time == sample_time) {
sample->depth.mm = depth_mm;
sample->temperature.mkelvin = temp_mk;