view Small_CPU/Inc/pressure.h @ 970:3123aa8723fd
Evo_2_23
Old / new BT module communication:
The old / new BT module do have a sligthly different command set. To keep them compatible a function has been added which returns, based on the HW identification, the command string which matches to the module. In case a command is not supported the value 0 is returned and the calling function may react. E.g. with skipping of configuration steps like it is done now for the new module.
author
Ideenmodellierer
date
Sun, 19 Jan 2025 20:55:30 +0100 (2 months ago)
parents
4093ac18b25c
children
line source
/* Define to prevent recursive inclusion -------------------------------------*/+ −
#ifndef PRESSURE_H+ −
#define PRESSURE_H+ −
+ −
#include <stdint.h>+ −
+ −
uint8_t init_pressure(void);+ −
void pressure_set_offset (float pressureOffset, float temperatureOffset);+ −
+ −
uint8_t pressure_update(void);+ −
void pressure_update_alternating(void);+ −
+ −
uint8_t is_init_pressure_done(void);+ −
+ −
HAL_StatusTypeDef pressure_sensor_get_pressure_raw(void);+ −
HAL_StatusTypeDef pressure_sensor_get_temperature_raw(void);+ −
void pressure_calculation(void);+ −
+ −
float get_temperature(void);+ −
float get_pressure_mbar(void);+ −
float get_surface_mbar(void);+ −
+ −
uint8_t is_surface_pressure_stable(void);+ −
float set_last_surface_pressure_stable(void);+ −
+ −
void init_surface_ring(uint8_t force);+ −
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 */+ −
+ −