ardupilot/libraries/AP_HAL_SITL/RCOutput.h

33 lines
869 B
C
Raw Normal View History

#pragma once
2012-12-17 23:56:21 -04:00
#include <AP_HAL/AP_HAL.h>
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
#include "AP_HAL_SITL.h"
2012-12-17 23:56:21 -04:00
class HALSITL::RCOutput : public AP_HAL::RCOutput {
2012-12-17 23:56:21 -04:00
public:
RCOutput(SITL_State *sitlState) {
_sitlState = sitlState;
_freq_hz = 50;
2012-12-17 23:56:21 -04:00
}
void init() override;
void set_freq(uint32_t chmask, uint16_t freq_hz) override;
uint16_t get_freq(uint8_t ch) override;
void enable_ch(uint8_t ch) override;
void disable_ch(uint8_t ch) override;
void write(uint8_t ch, uint16_t period_us) override;
uint16_t read(uint8_t ch) override;
void read(uint16_t* period_us, uint8_t len) override;
2016-10-11 08:02:04 -03:00
void cork(void);
void push(void);
2012-12-17 23:56:21 -04:00
private:
2012-12-17 23:56:21 -04:00
SITL_State *_sitlState;
uint16_t _freq_hz;
uint16_t _enable_mask;
2016-10-11 08:02:04 -03:00
bool _corked;
uint16_t _pending[SITL_NUM_CHANNELS];
2012-12-17 23:56:21 -04:00
};
2012-12-18 05:04:47 -04:00
#endif