2016-02-17 21:25:26 -04:00
|
|
|
#pragma once
|
2015-08-18 00:29:58 -03:00
|
|
|
|
|
|
|
#include "AP_HAL_Linux.h"
|
2016-04-26 14:34:25 -03:00
|
|
|
#include <AP_HAL/SPIDevice.h>
|
2015-08-18 00:29:58 -03:00
|
|
|
|
2016-07-29 16:14:02 -03:00
|
|
|
namespace Linux {
|
|
|
|
|
|
|
|
class RCOutput_Raspilot : public AP_HAL::RCOutput {
|
|
|
|
public:
|
2015-12-02 11:14:20 -04:00
|
|
|
void init();
|
2015-08-18 00:29:58 -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);
|
2016-10-11 19:27:56 -03:00
|
|
|
void cork(void) override;
|
|
|
|
void push(void) override;
|
2015-08-18 00:29:58 -03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void reset();
|
2017-01-13 15:26:14 -04:00
|
|
|
void _update(void);
|
2016-07-29 16:14:02 -03:00
|
|
|
|
2016-04-26 14:34:25 -03:00
|
|
|
AP_HAL::OwnPtr<AP_HAL::SPIDevice> _dev;
|
2016-07-29 16:14:02 -03:00
|
|
|
|
2015-08-18 00:29:58 -03:00
|
|
|
uint32_t _last_update_timestamp;
|
|
|
|
uint16_t _frequency;
|
2016-11-17 21:05:30 -04:00
|
|
|
uint16_t _new_frequency;
|
2015-08-18 00:29:58 -03:00
|
|
|
uint16_t _period_us[8];
|
2016-10-11 19:27:56 -03:00
|
|
|
bool _corked;
|
2015-08-18 00:29:58 -03:00
|
|
|
};
|
2016-07-29 16:14:02 -03:00
|
|
|
|
|
|
|
}
|