diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-12-29 23:43:32 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-29 16:21:50 -0800 |
commit | aad1fbcf5664736cdaa498bf995f3a3acab04485 (patch) | |
tree | 3a4524a2d530ea3e521d5c8729d60372223925c7 | |
parent | eda123462193a3c6be56ba88cdd6fb080d83370c (diff) | |
download | subsurface-aad1fbcf5664736cdaa498bf995f3a3acab04485.tar.gz |
Document a DLF-event type more.
This event type is found in the DLF file Robert got sent. The wetnotes
application can't display files containing this event type.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | parse-xml.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/parse-xml.c b/parse-xml.c index 65dc80910..d2a88cf7e 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -2625,6 +2625,10 @@ int parse_dlf_buffer(unsigned char *buffer, size_t size) } event_end(); break; + case 7: + /* Po2 sample? Solenoid inject? */ + //fprintf(stderr, "%02X %02X%02X %02X%02X\n", ptr[5], ptr[6], ptr[7], ptr[8], ptr[9]); + break; default: /* Unknown... */ break; |