From 441aad3a409e3e9c2d70afd03a942c52d1677bd7 Mon Sep 17 00:00:00 2001 From: Jef Driesen Date: Wed, 19 May 2010 20:01:44 +0200 Subject: [PATCH] Add support for the Uwatec Aladin Tec 2G. --- src/uwatec_smart_parser.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/uwatec_smart_parser.c b/src/uwatec_smart_parser.c index 299241c..2b0c6e2 100644 --- a/src/uwatec_smart_parser.c +++ b/src/uwatec_smart_parser.c @@ -366,6 +366,11 @@ uwatec_smart_parser_samples_foreach (parser_t *abstract, sample_callback_t callb table = uwatec_smart_aladin_table; entries = NELEMENTS (uwatec_smart_aladin_table); break; + case 0x13: // Aladin Tec 2G + header = 116; + table = uwatec_smart_aladin_table; + entries = NELEMENTS (uwatec_smart_aladin_table); + break; case 0x14: // Smart Com header = 100; table = uwatec_smart_com_table;