2015-08-11 03:28:43 -03:00
|
|
|
#include <AP_HAL/AP_HAL.h>
|
2015-05-04 03:15:12 -03:00
|
|
|
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
2012-12-17 23:56:21 -04:00
|
|
|
|
|
|
|
#include "RCInput.h"
|
|
|
|
|
2015-05-04 03:15:12 -03:00
|
|
|
using namespace HALSITL;
|
2012-12-17 23:56:21 -04:00
|
|
|
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
|
|
|
void SITLRCInput::init(void* machtnichts)
|
|
|
|
{
|
|
|
|
clear_overrides();
|
|
|
|
}
|
|
|
|
|
2015-05-04 21:59:07 -03:00
|
|
|
bool SITLRCInput::new_input()
|
2015-02-08 18:56:47 -04:00
|
|
|
{
|
|
|
|
if (_sitlState->new_rc_input) {
|
|
|
|
_sitlState->new_rc_input = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint16_t SITLRCInput::read(uint8_t ch) {
|
2014-11-11 00:15:28 -04:00
|
|
|
if (ch >= 8) {
|
|
|
|
return 0;
|
|
|
|
}
|
2012-12-17 23:56:21 -04:00
|
|
|
return _override[ch]? _override[ch] : _sitlState->pwm_input[ch];
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t SITLRCInput::read(uint16_t* periods, uint8_t len) {
|
|
|
|
for (uint8_t i=0; i<len; i++) {
|
2015-05-04 21:59:07 -03:00
|
|
|
periods[i] = _override[i]? _override[i] : _sitlState->pwm_input[i];
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
2014-03-25 00:39:41 -03:00
|
|
|
return 8;
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SITLRCInput::set_overrides(int16_t *overrides, uint8_t len) {
|
|
|
|
bool res = false;
|
|
|
|
for (uint8_t i = 0; i < len; i++) {
|
|
|
|
res |= set_override(i, overrides[i]);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SITLRCInput::set_override(uint8_t channel, int16_t override) {
|
|
|
|
if (override < 0) return false; /* -1: no change. */
|
|
|
|
if (channel < 8) {
|
|
|
|
_override[channel] = override;
|
|
|
|
if (override != 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SITLRCInput::clear_overrides()
|
|
|
|
{
|
|
|
|
for (uint8_t i = 0; i < 8; i++) {
|
2015-05-04 21:59:07 -03:00
|
|
|
_override[i] = 0;
|
2012-12-17 23:56:21 -04:00
|
|
|
}
|
|
|
|
}
|
2012-12-18 05:04:47 -04:00
|
|
|
#endif
|