Mercurial > public > ostc4
view Small_CPU/Inc/pressure.h @ 268:1b9847d40e81 write-from-sim
cleanup: make things static where possible.
and comment out some code that is not used. Trivial cleanup.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
author | Jan Mulder <jlmulder@xs4all.nl> |
---|---|
date | Tue, 23 Apr 2019 17:41:20 +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 */