[PATCH] Visualisation of individual oxygen sensor data for CCR dives

Jef Driesen jef at libdivecomputer.org
Mon Apr 17 12:49:02 PDT 2017


On 14-04-17 21:57, Anton Lundin wrote:
> On 13 April, 2017 - Jef Driesen wrote:
>
>> On 2017-04-12 10:47, Anton Lundin wrote:
>>>
>>> The issue with current libdivecomputer DC_SAMPLE_PPO2 is that you cant
>>> distinguish between ha "real" "voted" pO2 and the raw sensor value.
>>>
>>> I would like to see a option to export both, and be able to handle them
>>> differently
>>
>> We could introduce a new structure that carries a sensor index
>> (similar to DC_SAMPLE_PRESSURE):
>>
>> struct ppo2 {
>>     unsigned int sensor;
>>     double value;
>> };
>>
>> That way we can easily report multiple DC_SAMPLE_PPO2 values, each
>> with a
>> different sensor id. And for the voted/calculated ppO2, we can use
>> some magic value, like:
>>
>> #define DC_SENSOR_NONE 0xFFFFFFFF
>>
>> (Just like we already have DC_GASMIX_UNKNOWN).
>
> That would be great.
>
> Another thing would be to expose the voting information. Seeing when the
> sensor was voted out and the sensors performance after, is quite
> relevant for trying to diagnose what happened.

Unless I missed something, the voting info isn't stored in the sample data, only 
in the dive header. I'm not a CCR diver, but isn't the voting done for each 
sample? If that's correct, then the voting bits in the dive header aren't very 
useful, right? So I don't think we can report voting info.

I assume the voting bits in the dive header indicate the sensor has been voted 
out one or more times during the dive, but not necessary for the entire dive?

Jef


More information about the subsurface mailing list