mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
CCR is now detected from the log data
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
685c59214d
commit
1fe22a28ed
1 changed files with 1 additions and 5 deletions
|
@ -3221,17 +3221,13 @@ extern int divinglog_profile(void *handle, int columns, char **data, char **colu
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* My best guess is that if we have o2sensors, then it
|
* Count the number of o2 sensors
|
||||||
* is either CCR or PSCR dive. And the first time we
|
|
||||||
* have O2 sensor readings, we can count them to get
|
|
||||||
* the amount O2 sensors.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!cur_dive->dc.no_o2sensors && (cur_sample->o2sensor[0].mbar || cur_sample->o2sensor[0].mbar || cur_sample->o2sensor[0].mbar)) {
|
if (!cur_dive->dc.no_o2sensors && (cur_sample->o2sensor[0].mbar || cur_sample->o2sensor[0].mbar || cur_sample->o2sensor[0].mbar)) {
|
||||||
cur_dive->dc.no_o2sensors = cur_sample->o2sensor[0].mbar ? 1 : 0 +
|
cur_dive->dc.no_o2sensors = cur_sample->o2sensor[0].mbar ? 1 : 0 +
|
||||||
cur_sample->o2sensor[1].mbar ? 1 : 0 +
|
cur_sample->o2sensor[1].mbar ? 1 : 0 +
|
||||||
cur_sample->o2sensor[2].mbar ? 1 : 0;
|
cur_sample->o2sensor[2].mbar ? 1 : 0;
|
||||||
cur_dive->dc.divemode = CCR;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ptr += 12;
|
ptr += 12;
|
||||||
|
|
Loading…
Add table
Reference in a new issue