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-04-02 11:56:03 -03:00
|
|
|
// callback for UAVCAN messages
|
|
|
|
virtual void handle_baro_msg(float pressure, float temperature) {}
|
|
|
|
|
2017-07-12 02:03:33 -03:00
|
|
|
void backend_update(uint8_t instance);
|
|
|
|
|
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
|
|
|
|
AP_HAL::Semaphore *_sem;
|
2017-07-12 02:03:33 -03:00
|
|
|
|
|
|
|
virtual void update_healthy_flag(uint8_t instance);
|
|
|
|
|
2014-10-19 16:22:51 -03:00
|
|
|
};
|