2017-04-27 20:24:53 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2011-08-31 10:20:46 -07:00
|
|
|
#ifndef DISPLAY_H
|
|
|
|
#define DISPLAY_H
|
|
|
|
|
2018-08-27 10:32:14 -07:00
|
|
|
#include "libdivecomputer.h"
|
|
|
|
|
2013-04-01 13:51:49 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-12-06 10:01:16 -08:00
|
|
|
/* Plot info with smoothing, velocity indication
|
|
|
|
* and one-, two- and three-minute minimums and maximums */
|
|
|
|
struct plot_info {
|
|
|
|
int nr;
|
2019-08-04 18:44:57 +02:00
|
|
|
int nr_cylinders;
|
2012-12-06 10:01:16 -08:00
|
|
|
int maxtime;
|
|
|
|
int meandepth, maxdepth;
|
2012-12-09 16:54:16 -08:00
|
|
|
int minpressure, maxpressure;
|
2014-02-23 14:32:25 -08:00
|
|
|
int minhr, maxhr;
|
2012-12-09 16:54:16 -08:00
|
|
|
int mintemp, maxtemp;
|
2016-04-20 15:55:51 -07:00
|
|
|
enum {AIR, NITROX, TRIMIX, FREEDIVING} dive_type;
|
2012-12-06 10:01:16 -08:00
|
|
|
double endtempcoord;
|
2012-12-09 14:34:41 -08:00
|
|
|
double maxpp;
|
2021-01-09 17:28:23 +01:00
|
|
|
bool waypoint_above_ceiling;
|
2012-12-06 10:01:16 -08:00
|
|
|
struct plot_data *entry;
|
2019-08-04 18:44:57 +02:00
|
|
|
struct plot_pressure_data *pressures; /* cylinders.nr blocks of nr entries. */
|
2012-12-06 10:01:16 -08:00
|
|
|
};
|
|
|
|
|
2014-03-17 08:19:09 -07:00
|
|
|
extern struct divecomputer *select_dc(struct dive *);
|
2011-08-31 10:20:46 -07:00
|
|
|
|
2014-03-17 08:19:09 -07:00
|
|
|
extern unsigned int dc_number;
|
2012-08-22 02:34:29 +02:00
|
|
|
|
2013-05-03 11:04:51 -07:00
|
|
|
extern int is_default_dive_computer_device(const char *);
|
2013-09-16 18:04:42 -03:00
|
|
|
|
2014-02-27 20:09:57 -08:00
|
|
|
typedef void (*device_callback_t)(const char *name, void *userdata);
|
2014-05-18 13:29:40 +09:00
|
|
|
|
2020-05-01 12:22:06 +02:00
|
|
|
extern int enumerate_devices(device_callback_t callback, void *userdata, unsigned int transport);
|
2013-09-16 18:04:42 -03:00
|
|
|
|
2014-09-15 14:09:00 +02:00
|
|
|
#define AMB_PERCENTAGE 50.0
|
|
|
|
|
2013-04-01 13:51:49 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // DISPLAY_H
|