You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
759 B
28 lines
759 B
#pragma once |
|
|
|
#include <AP_HAL/AP_HAL.h> |
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL |
|
#include "AP_HAL_SITL.h" |
|
|
|
class HALSITL::RCOutput : public AP_HAL::RCOutput { |
|
public: |
|
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; |
|
|
|
private: |
|
SITL_State *_sitlState; |
|
uint16_t _freq_hz; |
|
uint16_t _enable_mask; |
|
}; |
|
|
|
#endif
|
|
|