2017-04-27 18:24:53 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-08-24 18:48:22 +00:00
|
|
|
#ifndef GASPRESSURES_H
|
|
|
|
#define GASPRESSURES_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* simple structure to track the beginning and end tank pressure as
|
|
|
|
* well as the integral of depth over time spent while we have no
|
|
|
|
* pressure reading from the tank */
|
|
|
|
typedef struct pr_track_struct pr_track_t;
|
|
|
|
struct pr_track_struct {
|
2016-03-10 15:40:15 +00:00
|
|
|
int start;
|
|
|
|
int end;
|
|
|
|
int t_start;
|
|
|
|
int t_end;
|
|
|
|
int pressure_time;
|
2014-08-24 18:48:22 +00:00
|
|
|
pr_track_t *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct pr_interpolate_struct pr_interpolate_t;
|
|
|
|
struct pr_interpolate_struct {
|
2016-03-10 15:40:15 +00:00
|
|
|
int start;
|
|
|
|
int end;
|
|
|
|
int pressure_time;
|
|
|
|
int acc_pressure_time;
|
2014-08-24 18:48:22 +00:00
|
|
|
};
|
|
|
|
|
2014-11-09 13:36:27 +00:00
|
|
|
enum interpolation_strategy {SAC, TIME, CONSTANT};
|
2014-08-25 08:03:46 +00:00
|
|
|
|
2014-08-24 18:48:22 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif // GASPRESSURES_H
|