Merge upstream libdivecomputer changes from Jef Driesen. The most noticeable part is Jen Mulder's OSTC3 initial setpoint addition, which fixes the OSTC3 data in CCR3 mode. But also various cleanups and fixups from Jef. * 'master' of git://git.libdivecomputer.org/libdivecomputer: OSTC3: set initial setpoint in profile data Remove unused parameters Cleanup the extract dives functions Remove unnecessary helper functions Remove deprecated functions from the public api Remove unnecessary include statements Fix the firmware version and serial number Add support for the Uwatec Aladin Tec 3G
44 lines
1.3 KiB
C
44 lines
1.3 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 HW_OSTC3_H
|
|
#define HW_OSTC3_H
|
|
|
|
#include <libdivecomputer/context.h>
|
|
#include <libdivecomputer/device.h>
|
|
#include <libdivecomputer/parser.h>
|
|
#include <libdivecomputer/hw_ostc3.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
dc_status_t
|
|
hw_ostc3_device_open (dc_device_t **device, dc_context_t *context, const char *name);
|
|
|
|
dc_status_t
|
|
hw_ostc3_parser_create (dc_parser_t **out, dc_context_t *context, unsigned int serial, unsigned int model);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
#endif /* HW_OSTC3_H */
|