Added a parser for the Uwatec Smart.
This commit is contained in:
parent
1a36118671
commit
52f7d01380
@ -67,7 +67,7 @@ libdivecomputer_la_LIBADD = -lws2_32
|
||||
endif
|
||||
libdivecomputer_la_SOURCES += \
|
||||
irda.h irda.c \
|
||||
uwatec_smart.h uwatec_smart.c
|
||||
uwatec_smart.h uwatec_smart.c uwatec_smart_parser.c
|
||||
endif
|
||||
|
||||
libdivecomputer_la_DEPENDENCIES = libdivecomputer.exp
|
||||
|
||||
@ -8,6 +8,7 @@ reefnet_sensuspro_parser_set_calibration
|
||||
reefnet_sensusultra_parser_create
|
||||
reefnet_sensusultra_parser_set_calibration
|
||||
uwatec_memomouse_parser_create
|
||||
uwatec_smart_parser_create
|
||||
suunto_vyper_parser_create
|
||||
suunto_spyder_parser_create
|
||||
suunto_d9_parser_create
|
||||
|
||||
@ -33,7 +33,8 @@ typedef enum parser_type_t {
|
||||
PARSER_TYPE_SUUNTO_D9,
|
||||
PARSER_TYPE_REEFNET_SENSUSPRO,
|
||||
PARSER_TYPE_REEFNET_SENSUSULTRA,
|
||||
PARSER_TYPE_UWATEC_MEMOMOUSE
|
||||
PARSER_TYPE_UWATEC_MEMOMOUSE,
|
||||
PARSER_TYPE_UWATEC_SMART
|
||||
} parser_type_t;
|
||||
|
||||
typedef enum parser_status_t {
|
||||
@ -90,7 +91,8 @@ typedef enum parser_sample_flags_t {
|
||||
|
||||
typedef enum parser_sample_vendor_t {
|
||||
SAMPLE_VENDOR_NONE,
|
||||
SAMPLE_VENDOR_UWATEC_ALADIN
|
||||
SAMPLE_VENDOR_UWATEC_ALADIN,
|
||||
SAMPLE_VENDOR_UWATEC_SMART
|
||||
} parser_sample_vendor_t;
|
||||
|
||||
typedef union parser_sample_value_t {
|
||||
|
||||
@ -22,12 +22,13 @@
|
||||
#ifndef UWATEC_SMART_H
|
||||
#define UWATEC_SMART_H
|
||||
|
||||
#include "device.h"
|
||||
#include "parser.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#include "device.h"
|
||||
|
||||
#define UWATEC_SMART_VERSION_SIZE 9
|
||||
|
||||
device_status_t
|
||||
@ -45,6 +46,9 @@ uwatec_smart_device_version (device_t *device, unsigned char data[], unsigned in
|
||||
device_status_t
|
||||
uwatec_smart_extract_dives (const unsigned char data[], unsigned int size, dive_callback_t callback, void *userdata);
|
||||
|
||||
parser_status_t
|
||||
uwatec_smart_parser_create (parser_t **parser, unsigned int model);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
416
src/uwatec_smart_parser.c
Normal file
416
src/uwatec_smart_parser.c
Normal file
@ -0,0 +1,416 @@
|
||||
/*
|
||||
* libdivecomputer
|
||||
*
|
||||
* Copyright (C) 2008 Jef Driesen
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
* MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h> // memcmp
|
||||
#include <assert.h>
|
||||
|
||||
#include "uwatec_smart.h"
|
||||
#include "parser-private.h"
|
||||
#include "units.h"
|
||||
#include "utils.h"
|
||||
|
||||
#define WARNING(expr) \
|
||||
{ \
|
||||
message ("%s:%d: %s\n", __FILE__, __LINE__, expr); \
|
||||
}
|
||||
|
||||
#define NBITS 8
|
||||
#define NELEMENTS(x) ( sizeof(x) / sizeof((x)[0]) )
|
||||
|
||||
typedef struct uwatec_smart_parser_t uwatec_smart_parser_t;
|
||||
|
||||
struct uwatec_smart_parser_t {
|
||||
parser_t base;
|
||||
unsigned int model;
|
||||
};
|
||||
|
||||
static parser_status_t uwatec_smart_parser_set_data (parser_t *abstract, const unsigned char *data, unsigned int size);
|
||||
static parser_status_t uwatec_smart_parser_samples_foreach (parser_t *abstract, sample_callback_t callback, void *userdata);
|
||||
static parser_status_t uwatec_smart_parser_destroy (parser_t *abstract);
|
||||
|
||||
static const parser_backend_t uwatec_smart_parser_backend = {
|
||||
PARSER_TYPE_UWATEC_SMART,
|
||||
uwatec_smart_parser_set_data, /* set_data */
|
||||
uwatec_smart_parser_samples_foreach, /* samples_foreach */
|
||||
uwatec_smart_parser_destroy /* destroy */
|
||||
};
|
||||
|
||||
|
||||
static int
|
||||
parser_is_uwatec_smart (parser_t *abstract)
|
||||
{
|
||||
if (abstract == NULL)
|
||||
return 0;
|
||||
|
||||
return abstract->backend == &uwatec_smart_parser_backend;
|
||||
}
|
||||
|
||||
|
||||
parser_status_t
|
||||
uwatec_smart_parser_create (parser_t **out, unsigned int model)
|
||||
{
|
||||
if (out == NULL)
|
||||
return PARSER_STATUS_ERROR;
|
||||
|
||||
// Allocate memory.
|
||||
uwatec_smart_parser_t *parser = malloc (sizeof (uwatec_smart_parser_t));
|
||||
if (parser == NULL) {
|
||||
WARNING ("Failed to allocate memory.");
|
||||
return PARSER_STATUS_MEMORY;
|
||||
}
|
||||
|
||||
// Initialize the base class.
|
||||
parser_init (&parser->base, &uwatec_smart_parser_backend);
|
||||
|
||||
// Set the default values.
|
||||
parser->model = model;
|
||||
|
||||
*out = (parser_t*) parser;
|
||||
|
||||
return PARSER_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static parser_status_t
|
||||
uwatec_smart_parser_destroy (parser_t *abstract)
|
||||
{
|
||||
if (! parser_is_uwatec_smart (abstract))
|
||||
return PARSER_STATUS_TYPE_MISMATCH;
|
||||
|
||||
// Free memory.
|
||||
free (abstract);
|
||||
|
||||
return PARSER_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static parser_status_t
|
||||
uwatec_smart_parser_set_data (parser_t *abstract, const unsigned char *data, unsigned int size)
|
||||
{
|
||||
if (! parser_is_uwatec_smart (abstract))
|
||||
return PARSER_STATUS_TYPE_MISMATCH;
|
||||
|
||||
return PARSER_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
static unsigned int
|
||||
uwatec_smart_identify (const unsigned char data[], unsigned int size)
|
||||
{
|
||||
unsigned int count = 0;
|
||||
for (unsigned int i = 0; i < size; ++i) {
|
||||
unsigned char value = data[i];
|
||||
for (unsigned int j = 0; j < NBITS; ++j) {
|
||||
unsigned char mask = 1 << (NBITS - 1 - j);
|
||||
if ((value & mask) == 0)
|
||||
return count;
|
||||
count++;
|
||||
}
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
|
||||
static unsigned int
|
||||
uwatec_smart_fixsignbit (unsigned int x, unsigned int n)
|
||||
{
|
||||
assert (n > 0);
|
||||
|
||||
unsigned int signbit = (1 << (n - 1));
|
||||
unsigned int mask = (0xFFFFFFFF << n);
|
||||
|
||||
// When turning a two's-complement number with a certain number
|
||||
// of bits into one with more bits, the sign bit must be repeated
|
||||
// in all the extra bits.
|
||||
if ((x & signbit) == signbit)
|
||||
return x | mask;
|
||||
else
|
||||
return x & ~mask;
|
||||
}
|
||||
|
||||
|
||||
typedef enum {
|
||||
DELTA_TANK_PRESSURE_DEPTH,
|
||||
DELTA_RBT,
|
||||
DELTA_TEMPERATURE,
|
||||
DELTA_TANK_PRESSURE,
|
||||
DELTA_DEPTH,
|
||||
ALARMS,
|
||||
TIME,
|
||||
ABSOLUTE_DEPTH,
|
||||
ABSOLUTE_TEMPERATURE,
|
||||
ABSOLUTE_TANK_1_PRESSURE,
|
||||
ABSOLUTE_TANK_2_PRESSURE,
|
||||
ABSOLUTE_TANK_D_PRESSURE,
|
||||
ABSOLUTE_RBT
|
||||
} uwatec_smart_sample_t;
|
||||
|
||||
typedef struct uwatec_smart_sample_info_t {
|
||||
uwatec_smart_sample_t type;
|
||||
unsigned int extrabytes;
|
||||
} uwatec_smart_sample_info_t;
|
||||
|
||||
static const
|
||||
uwatec_smart_sample_info_t uwatec_smart_pro_table [] = {
|
||||
{DELTA_DEPTH, 0}, // 0ddddddd
|
||||
{DELTA_TEMPERATURE, 0}, // 10dddddd
|
||||
{TIME, 0}, // 110ddddd
|
||||
{ALARMS, 0}, // 1110dddd
|
||||
{DELTA_DEPTH, 1}, // 11110ddd dddddddd
|
||||
{DELTA_TEMPERATURE, 1}, // 111110dd dddddddd
|
||||
{ABSOLUTE_DEPTH, 2}, // 1111110d dddddddd dddddddd
|
||||
{ABSOLUTE_TEMPERATURE, 2}, // 11111110 dddddddd dddddddd
|
||||
};
|
||||
|
||||
static const
|
||||
uwatec_smart_sample_info_t uwatec_smart_aladin_table [] = {
|
||||
{DELTA_DEPTH, 0}, // 0ddddddd
|
||||
{DELTA_TEMPERATURE, 0}, // 10dddddd
|
||||
{TIME, 0}, // 110ddddd
|
||||
{ALARMS, 0}, // 1110dddd
|
||||
{DELTA_DEPTH, 1}, // 11110ddd dddddddd
|
||||
{DELTA_TEMPERATURE, 1}, // 111110dd dddddddd
|
||||
{ABSOLUTE_DEPTH, 2}, // 1111110d dddddddd dddddddd
|
||||
{ABSOLUTE_TEMPERATURE, 2}, // 11111110 dddddddd dddddddd
|
||||
{ALARMS, 0}, // 11111111 0ddddddd
|
||||
};
|
||||
|
||||
static const
|
||||
uwatec_smart_sample_info_t uwatec_smart_com_table [] = {
|
||||
{DELTA_TANK_PRESSURE_DEPTH, 1}, // 0ddddddd dddddddd
|
||||
{DELTA_RBT, 0}, // 10dddddd
|
||||
{DELTA_TEMPERATURE, 0}, // 110ddddd
|
||||
{DELTA_TANK_PRESSURE, 1}, // 1110dddd dddddddd
|
||||
{DELTA_DEPTH, 1}, // 11110ddd dddddddd
|
||||
{DELTA_TEMPERATURE, 1}, // 111110dd dddddddd
|
||||
{ALARMS, 1}, // 1111110d dddddddd
|
||||
{TIME, 1}, // 11111110 dddddddd
|
||||
{ABSOLUTE_DEPTH, 2}, // 11111111 0ddddddd dddddddd dddddddd
|
||||
{ABSOLUTE_TANK_1_PRESSURE, 2}, // 11111111 10dddddd dddddddd dddddddd
|
||||
{ABSOLUTE_TEMPERATURE, 2}, // 11111111 110ddddd dddddddd dddddddd
|
||||
{ABSOLUTE_RBT, 1}, // 11111111 1110dddd dddddddd
|
||||
};
|
||||
|
||||
static const
|
||||
uwatec_smart_sample_info_t uwatec_smart_tec_table [] = {
|
||||
{DELTA_TANK_PRESSURE_DEPTH, 1}, // 0ddddddd dddddddd
|
||||
{DELTA_RBT, 0}, // 10dddddd
|
||||
{DELTA_TEMPERATURE, 0}, // 110ddddd
|
||||
{DELTA_TANK_PRESSURE, 1}, // 1110dddd dddddddd
|
||||
{DELTA_DEPTH, 1}, // 11110ddd dddddddd
|
||||
{DELTA_TEMPERATURE, 1}, // 111110dd dddddddd
|
||||
{ALARMS, 1}, // 1111110d dddddddd
|
||||
{TIME, 1}, // 11111110 dddddddd
|
||||
{ABSOLUTE_DEPTH, 2}, // 11111111 0ddddddd dddddddd dddddddd
|
||||
{ABSOLUTE_TEMPERATURE, 2}, // 11111111 10dddddd dddddddd dddddddd
|
||||
{ABSOLUTE_TANK_1_PRESSURE, 2}, // 11111111 110ddddd dddddddd dddddddd
|
||||
{ABSOLUTE_TANK_2_PRESSURE, 2}, // 11111111 1110dddd dddddddd dddddddd
|
||||
{ABSOLUTE_TANK_D_PRESSURE, 2}, // 11111111 11110ddd dddddddd dddddddd
|
||||
{ABSOLUTE_RBT, 1}, // 11111111 111110dd dddddddd
|
||||
};
|
||||
|
||||
|
||||
static parser_status_t
|
||||
uwatec_smart_parser_samples_foreach (parser_t *abstract, sample_callback_t callback, void *userdata)
|
||||
{
|
||||
uwatec_smart_parser_t *parser = (uwatec_smart_parser_t*) abstract;
|
||||
|
||||
if (! parser_is_uwatec_smart (abstract))
|
||||
return PARSER_STATUS_TYPE_MISMATCH;
|
||||
|
||||
const unsigned char *data = abstract->data;
|
||||
unsigned int size = abstract->size;
|
||||
|
||||
const uwatec_smart_sample_info_t *table = NULL;
|
||||
unsigned int entries = 0;
|
||||
unsigned int header = 0;
|
||||
|
||||
// Load the correct table.
|
||||
switch (parser->model) {
|
||||
case 0x10: // Smart Pro
|
||||
header = 92;
|
||||
table = uwatec_smart_pro_table;
|
||||
entries = NELEMENTS (uwatec_smart_pro_table);
|
||||
break;
|
||||
case 0x12: // Aladin Tec, Prime
|
||||
header = 108;
|
||||
table = uwatec_smart_aladin_table;
|
||||
entries = NELEMENTS (uwatec_smart_aladin_table);
|
||||
break;
|
||||
case 0x14: // Smart Com
|
||||
header = 100;
|
||||
table = uwatec_smart_com_table;
|
||||
entries = NELEMENTS (uwatec_smart_com_table);
|
||||
break;
|
||||
case 0x18: // Smart Tec
|
||||
case 0x1C: // Smart Z
|
||||
header = 132;
|
||||
table = uwatec_smart_tec_table;
|
||||
entries = NELEMENTS (uwatec_smart_tec_table);
|
||||
break;
|
||||
default:
|
||||
return PARSER_STATUS_ERROR;
|
||||
}
|
||||
|
||||
int complete = 1;
|
||||
int calibrated = 0;
|
||||
|
||||
unsigned int time = 0;
|
||||
unsigned int rbt = 0;
|
||||
unsigned int tank = 0;
|
||||
double depth = 0, depth_calibration = 0;
|
||||
double temperature = 0;
|
||||
double pressure = 0;
|
||||
|
||||
unsigned int offset = header;
|
||||
while (offset < size) {
|
||||
parser_sample_value_t sample = {0};
|
||||
|
||||
// Count the number of type bits in the bitstream.
|
||||
unsigned int id = uwatec_smart_identify (data + offset, size - offset);
|
||||
assert (id < entries);
|
||||
|
||||
// Skip the processed type bytes.
|
||||
offset += id / NBITS;
|
||||
|
||||
// Process the remaining data bytes.
|
||||
unsigned int n = id % NBITS;
|
||||
unsigned int nbits = NBITS - n - 1;
|
||||
unsigned int value = data[offset] & (0xFF >> n);
|
||||
assert (offset + table[id].extrabytes + 1 <= size);
|
||||
for (unsigned int i = 0; i < table[id].extrabytes; ++i) {
|
||||
nbits += NBITS;
|
||||
value <<= NBITS;
|
||||
value += data[offset + i + 1];
|
||||
}
|
||||
|
||||
// Skip the processed data bytes.
|
||||
offset += table[id].extrabytes + 1;
|
||||
|
||||
// Fix the sign bit.
|
||||
value = uwatec_smart_fixsignbit (value, nbits);
|
||||
|
||||
if (complete && table[id].type != TIME) {
|
||||
complete = 0;
|
||||
sample.time = time;
|
||||
if (callback) callback (SAMPLE_TYPE_TIME, sample, userdata);
|
||||
}
|
||||
|
||||
// Parse the value.
|
||||
switch (table[id].type) {
|
||||
case DELTA_TANK_PRESSURE_DEPTH:
|
||||
pressure += ((signed char) ((value >> NBITS) & 0xFF)) / 4.0;
|
||||
depth += ((signed char) (value & 0xFF)) / 50.0;
|
||||
sample.pressure.tank = tank;
|
||||
sample.pressure.value = pressure;
|
||||
if (callback) callback (SAMPLE_TYPE_PRESSURE, sample, userdata);
|
||||
sample.depth = depth - depth_calibration;
|
||||
if (callback) callback (SAMPLE_TYPE_DEPTH, sample, userdata);
|
||||
complete = 1;
|
||||
time += 4;
|
||||
break;
|
||||
case DELTA_RBT:
|
||||
rbt += (signed int) value;
|
||||
sample.rbt = rbt;
|
||||
if (callback) callback (SAMPLE_TYPE_RBT, sample, userdata);
|
||||
break;
|
||||
case DELTA_TEMPERATURE:
|
||||
temperature += ((signed int)value) / 2.5;
|
||||
sample.temperature = temperature;
|
||||
if (callback) callback (SAMPLE_TYPE_TEMPERATURE, sample, userdata);
|
||||
break;
|
||||
case DELTA_TANK_PRESSURE:
|
||||
pressure += ((signed int)value) / 4.0;
|
||||
sample.pressure.tank = tank;
|
||||
sample.pressure.value = pressure;
|
||||
if (callback) callback (SAMPLE_TYPE_PRESSURE, sample, userdata);
|
||||
break;
|
||||
case DELTA_DEPTH:
|
||||
depth += ((signed int)value) / 50.0;
|
||||
sample.depth = depth - depth_calibration;
|
||||
if (callback) callback (SAMPLE_TYPE_DEPTH, sample, userdata);
|
||||
complete = 1;
|
||||
time += 4;
|
||||
break;
|
||||
case ALARMS:
|
||||
sample.vendor.type = SAMPLE_VENDOR_UWATEC_SMART;
|
||||
sample.vendor.size = sizeof (value);
|
||||
sample.vendor.data = &value;
|
||||
if (callback) callback (SAMPLE_TYPE_VENDOR, sample, userdata);
|
||||
break;
|
||||
case TIME:
|
||||
complete = 1;
|
||||
time += value * 4;
|
||||
break;
|
||||
case ABSOLUTE_DEPTH:
|
||||
depth = value / 50.0;
|
||||
if (!calibrated) {
|
||||
calibrated = 1;
|
||||
depth_calibration = depth;
|
||||
}
|
||||
sample.depth = depth - depth_calibration;
|
||||
if (callback) callback (SAMPLE_TYPE_DEPTH, sample, userdata);
|
||||
complete = 1;
|
||||
time += 4;
|
||||
break;
|
||||
case ABSOLUTE_TEMPERATURE:
|
||||
temperature = value / 2.5;
|
||||
sample.temperature = temperature;
|
||||
if (callback) callback (SAMPLE_TYPE_TEMPERATURE, sample, userdata);
|
||||
break;
|
||||
case ABSOLUTE_TANK_D_PRESSURE:
|
||||
tank = 2;
|
||||
pressure = value / 4.0;
|
||||
sample.pressure.tank = tank;
|
||||
sample.pressure.value = pressure;
|
||||
if (callback) callback (SAMPLE_TYPE_PRESSURE, sample, userdata);
|
||||
break;
|
||||
case ABSOLUTE_TANK_2_PRESSURE:
|
||||
tank = 1;
|
||||
pressure = value / 4.0;
|
||||
sample.pressure.tank = tank;
|
||||
sample.pressure.value = pressure;
|
||||
if (callback) callback (SAMPLE_TYPE_PRESSURE, sample, userdata);
|
||||
break;
|
||||
case ABSOLUTE_TANK_1_PRESSURE:
|
||||
tank = 0;
|
||||
pressure = value / 4.0;
|
||||
sample.pressure.tank = tank;
|
||||
sample.pressure.value = pressure;
|
||||
if (callback) callback (SAMPLE_TYPE_PRESSURE, sample, userdata);
|
||||
break;
|
||||
case ABSOLUTE_RBT:
|
||||
rbt = value;
|
||||
sample.rbt = rbt;
|
||||
if (callback) callback (SAMPLE_TYPE_RBT, sample, userdata);
|
||||
break;
|
||||
default:
|
||||
WARNING ("Unknown sample type.");
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
assert (offset == size);
|
||||
|
||||
return PARSER_STATUS_SUCCESS;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user