The firmware version and serial number are stored in the final block of each dive. That makes it very tricky to support the devinfo event correctly. For an efficient implementation of the fingerprint feature, the devinfo event should be emitted before downloading the manifests or the dives. Fortunately it turns out it is actually possible to retrieve the firmware version and serial number independently, using the special identifier command.
59 lines
1.8 KiB
C
59 lines
1.8 KiB
C
/*
|
|
* libdivecomputer
|
|
*
|
|
* Copyright (C) 2013 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
|
|
*/
|
|
|
|
#ifndef SHEARWATER_COMMON_H
|
|
#define SHEARWATER_COMMON_H
|
|
|
|
#include "device-private.h"
|
|
#include "serial.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#define ID_SERIAL 0x8010
|
|
#define ID_FIRMWARE 0x8011
|
|
|
|
typedef struct shearwater_common_device_t {
|
|
dc_device_t base;
|
|
serial_t *port;
|
|
} shearwater_common_device_t;
|
|
|
|
dc_status_t
|
|
shearwater_common_open (shearwater_common_device_t *device, dc_context_t *context, const char *name);
|
|
|
|
dc_status_t
|
|
shearwater_common_close (shearwater_common_device_t *device);
|
|
|
|
dc_status_t
|
|
shearwater_common_transfer (shearwater_common_device_t *device, const unsigned char input[], unsigned int isize, unsigned char output[], unsigned int osize, unsigned int *actual);
|
|
|
|
dc_status_t
|
|
shearwater_common_download (shearwater_common_device_t *device, dc_buffer_t *buffer, unsigned int address, unsigned int size, unsigned int compression);
|
|
|
|
dc_status_t
|
|
shearwater_common_identifier (shearwater_common_device_t *device, dc_buffer_t *buffer, unsigned int id);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* SHEARWATER_COMMON_H */
|