The Oceanic Pro Plus X is quite different from the previous models. The profile data is now stored in a dedicated memory area, and hence there are a few important differences: Reading data from the new profile memory area is done with a new F6 command. This new command is very similar to the existing B8 command, but accesses a completely different memory area. In order to integrate those two memory areas as transparantly as possible into the existing infrastructure, a virtual memory space is introduced. The lower part of the virtual memory is mapped onto the main memory area, while the upper part is mapped onto the new profile memory area. The page size of the new profile memory area also increased from 16 to 256 bytes. If the profile size is not an exact multiple of 256 bytes, the dive computer pads the profile data with 0xFF bytes. The other changes are the usual Oceanic device specific changes.
103 lines
3.3 KiB
C
103 lines
3.3 KiB
C
/*
|
|
* libdivecomputer
|
|
*
|
|
* Copyright (C) 2009 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 OCEANIC_COMMON_H
|
|
#define OCEANIC_COMMON_H
|
|
|
|
#include "device-private.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
#define PAGESIZE 0x10
|
|
#define FPMAXSIZE 0x20
|
|
|
|
#define OCEANIC_COMMON_MATCH(version,patterns) \
|
|
oceanic_common_match ((version), (patterns), \
|
|
sizeof (patterns) / sizeof *(patterns))
|
|
|
|
typedef struct oceanic_common_layout_t {
|
|
// Memory size.
|
|
unsigned int memsize;
|
|
unsigned int highmem;
|
|
// Device info.
|
|
unsigned int cf_devinfo;
|
|
// Ringbuffer pointers.
|
|
unsigned int cf_pointers;
|
|
// Logbook ringbuffer.
|
|
unsigned int rb_logbook_begin;
|
|
unsigned int rb_logbook_end;
|
|
unsigned int rb_logbook_entry_size;
|
|
// Profile ringbuffer
|
|
unsigned int rb_profile_begin;
|
|
unsigned int rb_profile_end;
|
|
// The pointer mode indicates how the global ringbuffer pointers
|
|
// should be interpreted (a first/last or a begin/end pair), and
|
|
// how the profile pointers are stored in each logbook entry (two
|
|
// 12-bit values or two 16-bit values with each 4 bits padding).
|
|
unsigned int pt_mode_global;
|
|
unsigned int pt_mode_logbook;
|
|
unsigned int pt_mode_serial;
|
|
} oceanic_common_layout_t;
|
|
|
|
typedef struct oceanic_common_device_t {
|
|
dc_device_t base;
|
|
unsigned char version[PAGESIZE];
|
|
unsigned char fingerprint[FPMAXSIZE];
|
|
const oceanic_common_layout_t *layout;
|
|
unsigned int multipage;
|
|
} oceanic_common_device_t;
|
|
|
|
typedef struct oceanic_common_device_vtable_t {
|
|
dc_device_vtable_t base;
|
|
dc_status_t (*logbook) (dc_device_t *device, dc_event_progress_t *progress, dc_buffer_t *logbook);
|
|
dc_status_t (*profile) (dc_device_t *device, dc_event_progress_t *progress, dc_buffer_t *logbook, dc_dive_callback_t callback, void *userdata);
|
|
} oceanic_common_device_vtable_t;
|
|
|
|
typedef unsigned char oceanic_common_version_t[PAGESIZE + 1];
|
|
|
|
int
|
|
oceanic_common_match (const unsigned char *version, const oceanic_common_version_t patterns[], unsigned int n);
|
|
|
|
void
|
|
oceanic_common_device_init (oceanic_common_device_t *device);
|
|
|
|
dc_status_t
|
|
oceanic_common_device_logbook (dc_device_t *device, dc_event_progress_t *progress, dc_buffer_t *logbook);
|
|
|
|
dc_status_t
|
|
oceanic_common_device_profile (dc_device_t *device, dc_event_progress_t *progress, dc_buffer_t *logbook, dc_dive_callback_t callback, void *userdata);
|
|
|
|
dc_status_t
|
|
oceanic_common_device_set_fingerprint (dc_device_t *device, const unsigned char data[], unsigned int size);
|
|
|
|
dc_status_t
|
|
oceanic_common_device_dump (dc_device_t *abstract, dc_buffer_t *buffer);
|
|
|
|
dc_status_t
|
|
oceanic_common_device_foreach (dc_device_t *device, dc_dive_callback_t callback, void *userdata);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* OCEANIC_COMMON_H */
|