2014-03-31 14:29:33 -03:00
|
|
|
|
|
|
|
#ifndef __AP_HAL_VRBRAIN_RCOUTPUT_H__
|
|
|
|
#define __AP_HAL_VRBRAIN_RCOUTPUT_H__
|
|
|
|
|
2015-08-11 03:28:43 -03:00
|
|
|
#include "AP_HAL_VRBRAIN.h"
|
2014-03-31 14:29:33 -03:00
|
|
|
#include <systemlib/perf_counter.h>
|
|
|
|
|
|
|
|
#define VRBRAIN_NUM_OUTPUT_CHANNELS 16
|
|
|
|
|
|
|
|
class VRBRAIN::VRBRAINRCOutput : public AP_HAL::RCOutput
|
|
|
|
{
|
|
|
|
public:
|
2015-12-02 11:14:20 -04:00
|
|
|
void init();
|
2014-03-31 14:29:33 -03:00
|
|
|
void set_freq(uint32_t chmask, uint16_t freq_hz);
|
|
|
|
uint16_t get_freq(uint8_t ch);
|
|
|
|
void enable_ch(uint8_t ch);
|
|
|
|
void disable_ch(uint8_t ch);
|
|
|
|
void write(uint8_t ch, uint16_t period_us);
|
|
|
|
uint16_t read(uint8_t ch);
|
|
|
|
void read(uint16_t* period_us, uint8_t len);
|
|
|
|
void set_safety_pwm(uint32_t chmask, uint16_t period_us);
|
2014-05-30 17:58:34 -03:00
|
|
|
void set_failsafe_pwm(uint32_t chmask, uint16_t period_us);
|
2014-09-14 05:24:13 -03:00
|
|
|
bool force_safety_on(void);
|
2014-03-31 14:29:33 -03:00
|
|
|
void force_safety_off(void);
|
|
|
|
|
|
|
|
void _timer_tick(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _pwm_fd;
|
2014-06-27 11:32:03 -03:00
|
|
|
|
2014-03-31 14:29:33 -03:00
|
|
|
uint16_t _freq_hz;
|
|
|
|
uint16_t _period[VRBRAIN_NUM_OUTPUT_CHANNELS];
|
|
|
|
volatile uint8_t _max_channel;
|
|
|
|
volatile bool _need_update;
|
|
|
|
perf_counter_t _perf_rcout;
|
|
|
|
uint32_t _last_output;
|
|
|
|
unsigned _servo_count;
|
2014-06-27 11:32:03 -03:00
|
|
|
|
2014-03-31 14:29:33 -03:00
|
|
|
uint32_t _rate_mask;
|
|
|
|
uint16_t _enabled_channels;
|
|
|
|
|
|
|
|
void _init_alt_channels(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __AP_HAL_VRBRAIN_RCOUTPUT_H__
|