summaryrefslogtreecommitdiffstats
path: root/core/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/profile.h')
-rw-r--r--core/profile.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/profile.h b/core/profile.h
index 761f270d7..8636be2fd 100644
--- a/core/profile.h
+++ b/core/profile.h
@@ -97,13 +97,17 @@ int get_maxdepth(struct plot_info *pi);
#define SENSOR_PR 0
#define INTERPOLATED_PR 1
-#define SENSOR_PRESSURE(_entry,_idx) (_entry)->pressure[_idx][SENSOR_PR]
static inline int get_plot_pressure_data(const struct plot_data *entry, int sensor, int idx)
{
return entry->pressure[idx][sensor];
}
+static inline void set_plot_pressure_data(struct plot_data *entry, int sensor, int idx, int value)
+{
+ entry->pressure[idx][sensor] = value;
+}
+
static inline int get_plot_sensor_pressure(const struct plot_data *entry, int idx)
{
return get_plot_pressure_data(entry, SENSOR_PR, idx);