ardupilot/libraries/AP_HAL_SITL/AnalogIn.h

51 lines
1.3 KiB
C++

#ifndef __AP_HAL_SITL_ANALOG_IN_H__
#define __AP_HAL_SITL_ANALOG_IN_H__
#include <AP_HAL/AP_HAL.h>
#include "AP_HAL_SITL_Namespace.h"
#define SITL_INPUT_MAX_CHANNELS 12
class HALSITL::ADCSource : public AP_HAL::AnalogSource {
public:
friend class HALSITL::SITLAnalogIn;
/* pin designates the ADC input number */
ADCSource(SITL_State *sitlState, uint8_t pin);
/* implement AnalogSource virtual api: */
float read_average();
float read_latest();
void set_pin(uint8_t p);
float voltage_average();
float voltage_latest();
float voltage_average_ratiometric() {
return voltage_average();
}
void set_stop_pin(uint8_t pin) {}
void set_settle_time(uint16_t settle_time_ms) {}
private:
SITL_State *_sitlState;
uint8_t _pin;
};
/* SITLAnalogIn : a concrete class providing the implementations of the
* timer event and the AP_HAL::AnalogIn interface */
class HALSITL::SITLAnalogIn : public AP_HAL::AnalogIn {
public:
SITLAnalogIn(SITL_State *sitlState) {
_sitlState = sitlState;
}
void init(void* ap_hal_scheduler);
AP_HAL::AnalogSource* channel(int16_t n);
float board_voltage(void) {
return 5.0f;
}
private:
static ADCSource* _channels[SITL_INPUT_MAX_CHANNELS];
SITL_State *_sitlState;
};
#endif // __AP_HAL_SITL_ANALOG_IN_H__