mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
0c343f2a47
This is something I wanted to do for a while. Every uemis sample is simply a packed structure with no padding. Instead of grabbing random bytes from the middle of an unstructured data blob let's just define the structure and access its members. And while we do that, add support for the more useful uemis events as well. A couple of the warnings are disabled by default (compile time flag) as they are just crazy - any normal dive will give you dozens and dozens of speed warnings. Same goes for the PO2 green warning (I haven't looked but this seems to trigger on a PO2 over 1.0 or something). Completely useless and just hides actually useful info. I still want to redo the way we visualize events in general - just printing the text ontop of the profile really is suboptimal. Especially as the uemis really seems to love to repeat several of the warnings quite frequently. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
34 lines
796 B
C
34 lines
796 B
C
/*
|
|
* defines and prototypes for the uemis Zurich SDA file parser
|
|
*/
|
|
|
|
#ifndef UEMIS_H
|
|
#define UEMIS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void uemis_parse_divelog_binary(char *base64, void *divep);
|
|
|
|
typedef struct {
|
|
uint16_t dive_time;
|
|
uint16_t water_pressure; // (in cbar)
|
|
uint16_t dive_temperature; // (in dC)
|
|
uint8_t ascent_speed; // (units unclear)
|
|
uint8_t work_fact;
|
|
uint8_t cold_fact;
|
|
uint8_t bubble_fact;
|
|
uint16_t ascent_time;
|
|
uint16_t ascent_time_opt;
|
|
uint16_t p_amb_tol;
|
|
uint16_t satt;
|
|
uint16_t hold_depth;
|
|
uint16_t hold_time;
|
|
uint8_t active_tank;
|
|
uint16_t tank_pressure; // (in cbar)
|
|
uint16_t consumption; // (units unclear)
|
|
uint8_t rgt; // (remaining gas time in minutes)
|
|
uint8_t cns;
|
|
uint8_t flags[8];
|
|
} __attribute((packed)) uemis_sample_t;
|
|
|
|
#endif /* DIVE_H */
|