Mercurial > public > ostc4
view Small_CPU/Inc/pressure.h @ 259:26c874cdde0d bm-3
feature: allow new saturation to be set in lower left corner
While we already could select it during a dive, it was not possible to
set the left lower corner field to the saturation field as a default
setting. With this commit, we can.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
author | Jan Mulder <jlmulder@xs4all.nl> |
---|---|
date | Mon, 15 Apr 2019 17:35:47 +0200 |
parents | 5f11787b4f42 |
children | 8e9c502c0b06 |
line wrap: on
line source
/* Define to prevent recursive inclusion -------------------------------------*/ #ifndef PRESSURE_H #define PRESSURE_H #include <stdint.h> uint8_t init_pressure(void); uint8_t pressure_update(void); uint8_t is_init_pressure_done(void); void pressure_sensor_get_pressure_raw(void); void pressure_sensor_get_temperature_raw(void); void pressure_calculation(void); float get_temperature(void); float get_pressure_mbar(void); float get_surface_mbar(void); void init_surface_ring(void); void update_surface_pressure(uint8_t call_rhythm_seconds); uint32_t demo_modify_temperature_and_pressure(int32_t divetime_in_seconds, uint8_t subseconds, float ceiling_mbar); #endif /* PRESSURE_H */