mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add a few more Suunto events
Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
18e625129e
commit
6037be946f
1 changed files with 12 additions and 0 deletions
12
parse-xml.c
12
parse-xml.c
|
@ -1681,6 +1681,10 @@ extern int dm4_events(void *handle, int columns, char **data, char **column)
|
|||
/* 13 Air time */
|
||||
cur_event.name = strdup("airtime");
|
||||
break;
|
||||
case 17:
|
||||
/* 17 Ascent warning */
|
||||
cur_event.name = strdup("ascent");
|
||||
break;
|
||||
case 18:
|
||||
/* 18 Ceiling error */
|
||||
cur_event.name = strdup("ceiling");
|
||||
|
@ -1689,6 +1693,14 @@ extern int dm4_events(void *handle, int columns, char **data, char **column)
|
|||
/* 19 Surfaced */
|
||||
cur_event.name = strdup("surface");
|
||||
break;
|
||||
case 20:
|
||||
/* 20 Deco */
|
||||
cur_event.name = strdup("deco");
|
||||
break;
|
||||
case 22:
|
||||
/* 22 Mandatory safety stop violation */
|
||||
cur_event.name = strdup("violation");
|
||||
break;
|
||||
case 257:
|
||||
/* 257 Dive active */
|
||||
/* This seems to be given after surface
|
||||
|
|
Loading…
Add table
Reference in a new issue