ardupilot/libraries/AP_HAL_SITL/RCOutput.h

46 lines
1.4 KiB
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:
explicit RCOutput(SITL_State *sitlState): _sitlState(sitlState), _freq_hz(50) {}
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;
void cork(void) override;
void push(void) override;
2012-12-17 23:56:21 -04:00
/*
force the safety switch on, disabling PWM output from the IO board
*/
bool force_safety_on(void) override;
/*
force the safety switch off, enabling PWM output from the IO board
*/
void force_safety_off(void) override;
/*
Serial LED emulation
*/
2020-02-24 20:54:04 -04:00
bool set_serial_led_num_LEDs(const uint16_t chan, uint8_t num_leds, output_mode mode = MODE_PWM_NONE, uint16_t clock_mask = 0) override;
void set_serial_led_rgb_data(const uint16_t chan, int8_t led, uint8_t red, uint8_t green, uint8_t blue) override;
void serial_led_send(const uint16_t chan) override;
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