2015-12-01 12:07:15 -04:00
|
|
|
#pragma once
|
2014-10-19 16:22:51 -03:00
|
|
|
|
|
|
|
#include "AP_Baro.h"
|
|
|
|
|
|
|
|
class AP_Baro_Backend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AP_Baro_Backend(AP_Baro &baro);
|
2017-04-02 11:56:03 -03:00
|
|
|
virtual ~AP_Baro_Backend(void) {};
|
2014-10-19 16:22:51 -03:00
|
|
|
|
|
|
|
// each driver must provide an update method to copy accumulated
|
|
|
|
// data to the frontend
|
|
|
|
virtual void update() = 0;
|
|
|
|
|
|
|
|
// accumulate function. This is used for backends that don't use a
|
|
|
|
// timer, and need to be called regularly by the main code to
|
|
|
|
// trigger them to read the sensor
|
|
|
|
virtual void accumulate(void) {}
|
|
|
|
|
2017-07-12 02:03:33 -03:00
|
|
|
void backend_update(uint8_t instance);
|
|
|
|
|
2018-03-12 04:58:10 -03:00
|
|
|
// Check that the baro valid by using a mean filter.
|
|
|
|
// If the value further that filtrer_range from mean value, it is rejected.
|
|
|
|
bool pressure_ok(float press);
|
|
|
|
uint32_t get_error_count() const { return _error_count; }
|
2014-10-19 16:22:51 -03:00
|
|
|
protected:
|
|
|
|
// reference to frontend object
|
|
|
|
AP_Baro &_frontend;
|
|
|
|
|
|
|
|
void _copy_to_frontend(uint8_t instance, float pressure, float temperature);
|
2016-11-03 22:05:12 -03:00
|
|
|
|
|
|
|
// semaphore for access to shared frontend data
|
2018-10-11 20:35:03 -03:00
|
|
|
HAL_Semaphore_Recursive _sem;
|
2017-07-12 02:03:33 -03:00
|
|
|
|
|
|
|
virtual void update_healthy_flag(uint8_t instance);
|
|
|
|
|
2018-03-12 04:58:10 -03:00
|
|
|
// mean pressure for range filter
|
|
|
|
float _mean_pressure;
|
|
|
|
// number of dropped samples. Not used for now, but can be usable to choose more reliable sensor
|
|
|
|
uint32_t _error_count;
|
2014-10-19 16:22:51 -03:00
|
|
|
};
|