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 */
|
/* 13 Air time */
|
||||||
cur_event.name = strdup("airtime");
|
cur_event.name = strdup("airtime");
|
||||||
break;
|
break;
|
||||||
|
case 17:
|
||||||
|
/* 17 Ascent warning */
|
||||||
|
cur_event.name = strdup("ascent");
|
||||||
|
break;
|
||||||
case 18:
|
case 18:
|
||||||
/* 18 Ceiling error */
|
/* 18 Ceiling error */
|
||||||
cur_event.name = strdup("ceiling");
|
cur_event.name = strdup("ceiling");
|
||||||
|
@ -1689,6 +1693,14 @@ extern int dm4_events(void *handle, int columns, char **data, char **column)
|
||||||
/* 19 Surfaced */
|
/* 19 Surfaced */
|
||||||
cur_event.name = strdup("surface");
|
cur_event.name = strdup("surface");
|
||||||
break;
|
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:
|
case 257:
|
||||||
/* 257 Dive active */
|
/* 257 Dive active */
|
||||||
/* This seems to be given after surface
|
/* This seems to be given after surface
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue