mirror of https://github.com/ArduPilot/ardupilot
34 lines
790 B
C++
34 lines
790 B
C++
#pragma once
|
|
|
|
#include <AP_HAL/AP_HAL_Boards.h>
|
|
|
|
#ifndef AP_AIRSPEED_ANALOG_ENABLED
|
|
#define AP_AIRSPEED_ANALOG_ENABLED AP_AIRSPEED_BACKEND_DEFAULT_ENABLED
|
|
#endif
|
|
|
|
#if AP_AIRSPEED_ANALOG_ENABLED
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include "AP_Airspeed_Backend.h"
|
|
|
|
class AP_Airspeed_Analog : public AP_Airspeed_Backend
|
|
{
|
|
public:
|
|
AP_Airspeed_Analog(AP_Airspeed &frontend, uint8_t _instance);
|
|
|
|
// probe and initialise the sensor
|
|
bool init(void) override;
|
|
|
|
// return the current differential_pressure in Pascal
|
|
bool get_differential_pressure(float &pressure) override;
|
|
|
|
// temperature not available via analog backend
|
|
bool get_temperature(float &temperature) override { return false; }
|
|
|
|
private:
|
|
AP_HAL::AnalogSource *_source;
|
|
};
|
|
|
|
#endif // AP_AIRSPEED_ANALOG_ENABLED
|