mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-17 21:06:17 +00:00
Add tankpressure parsing for UDDF files
David McNett sent me some example Cochran CAN file data, along with his UDDF exports of same. I still have absolutely no idea how to decode the CAN files (although the subsurface decrypting code seems to correctly decrypt the data, and I see binary patters rather than just noise), but at least I can make sure we parse the UDDF portion better. See also https://github.com/nugget/cochran2uddf for David's tool to convert the Cochran CSV exports into UDDF. Data-source: David McNett <nugget@macnugget.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
697435b249
commit
9c7aaed02a
1 changed files with 1 additions and 0 deletions
|
@ -647,6 +647,7 @@ static int uddf_fill_sample(struct sample *sample, const char *name, int len, ch
|
|||
return MATCH(".divetime", sampletime, &sample->time) ||
|
||||
MATCH(".depth", depth, &sample->depth) ||
|
||||
MATCH(".temperature", temperature, &sample->temperature) ||
|
||||
MATCH(".tankpressure", pressure, &sample->cylinderpressure) ||
|
||||
0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue