3 changed files with 89 additions and 21 deletions
@ -1,38 +1,101 @@
@@ -1,38 +1,101 @@
|
||||
|
||||
#include "RCInput.h" |
||||
|
||||
#include <hwf4/timer.h> |
||||
|
||||
using namespace SMACCM; |
||||
|
||||
/* Constrain captured pulse to be between min and max pulsewidth. */ |
||||
static inline uint16_t constrain_pulse(uint16_t p) |
||||
{ |
||||
if (p > RC_INPUT_MAX_PULSEWIDTH) |
||||
return RC_INPUT_MAX_PULSEWIDTH; |
||||
if (p < RC_INPUT_MIN_PULSEWIDTH) |
||||
return RC_INPUT_MIN_PULSEWIDTH; |
||||
|
||||
return p; |
||||
} |
||||
|
||||
SMACCMRCInput::SMACCMRCInput() |
||||
{} |
||||
{ |
||||
} |
||||
|
||||
void SMACCMRCInput::init(void *unused) |
||||
{ |
||||
clear_overrides(); |
||||
} |
||||
|
||||
void SMACCMRCInput::init(void* machtnichts) |
||||
{} |
||||
uint8_t SMACCMRCInput::valid() |
||||
{ |
||||
// If any of the overrides are positive, we have valid data.
|
||||
for (int i = 0; i < PPM_MAX_CHANNELS; ++i) |
||||
if (_override[i] > 0) |
||||
return true; |
||||
|
||||
uint8_t SMACCMRCInput::valid() { |
||||
return 0; |
||||
return timer_is_ppm_valid(); |
||||
} |
||||
|
||||
uint16_t SMACCMRCInput::read(uint8_t ch) { |
||||
if (ch == 3) return 900; /* throttle should be low, for safety */ |
||||
else return 1500; |
||||
// It looks like the APM2 driver clears the PPM sample after this
|
||||
// function is called, so we do the same thing here for compatibility.
|
||||
uint16_t SMACCMRCInput::read(uint8_t ch) |
||||
{ |
||||
uint16_t result = 0; |
||||
|
||||
if (_override[ch] != 0) { |
||||
result = _override[ch]; |
||||
} else { |
||||
timer_get_ppm_channel(ch, &result); |
||||
result = constrain_pulse(result); |
||||
} |
||||
|
||||
timer_clear_ppm(); |
||||
return constrain_pulse(result); |
||||
} |
||||
|
||||
uint8_t SMACCMRCInput::read(uint16_t* periods, uint8_t len) { |
||||
for (uint8_t i = 0; i < len; i++){ |
||||
if (i == 3) periods[i] = 900; |
||||
else periods[i] = 1500; |
||||
} |
||||
return len; |
||||
// It looks like the APM2 driver clears the PPM sample after this
|
||||
// function is called, so we do the same thing here for compatibility.
|
||||
uint8_t SMACCMRCInput::read(uint16_t *periods, uint8_t len) |
||||
{ |
||||
uint8_t result; |
||||
result = timer_get_ppm(periods, len, NULL); |
||||
|
||||
for (int i = 0; i < result; ++i) { |
||||
periods[i] = constrain_pulse(periods[i]); |
||||
if (_override[i] != 0) |
||||
periods[i] = _override[i]; |
||||
} |
||||
|
||||
timer_clear_ppm(); |
||||
return result; |
||||
} |
||||
|
||||
bool SMACCMRCInput::set_overrides(int16_t *overrides, uint8_t len) { |
||||
return true; |
||||
bool SMACCMRCInput::set_overrides(int16_t *overrides, uint8_t len) |
||||
{ |
||||
bool result = false; |
||||
|
||||
for (int i = 0; i < len; ++i) |
||||
result |= set_override(i, overrides[i]); |
||||
|
||||
return result; |
||||
} |
||||
|
||||
bool SMACCMRCInput::set_override(uint8_t channel, int16_t override) { |
||||
return true; |
||||
bool SMACCMRCInput::set_override(uint8_t channel, int16_t override) |
||||
{ |
||||
if (override < 0) |
||||
return false; |
||||
|
||||
if (channel < PPM_MAX_CHANNELS) { |
||||
_override[channel] = override; |
||||
if (override != 0) { |
||||
return true; |
||||
} |
||||
} |
||||
|
||||
return false; |
||||
} |
||||
|
||||
void SMACCMRCInput::clear_overrides() |
||||
{} |
||||
|
||||
{ |
||||
for (int i = 0; i < PPM_MAX_CHANNELS; ++i) |
||||
_override[i] = 0; |
||||
} |
||||
|
Loading…
Reference in new issue