#include #if CONFIG_HAL_BOARD == HAL_BOARD_LINUX #include #include #include #include #include #include #include #include #include #include #include #include #include "RCInput.h" #include "sbus.h" #include "dsm.h" extern const AP_HAL::HAL& hal; using namespace Linux; RCInput::RCInput() : new_rc_input(false) { ppm_state._channel_counter = -1; } void RCInput::init(void* machtnichts) { } bool RCInput::new_input() { return new_rc_input; } uint8_t RCInput::num_channels() { return _num_channels; } uint16_t RCInput::read(uint8_t ch) { new_rc_input = false; if (_override[ch]) { return _override[ch]; } if (ch >= _num_channels) { return 0; } return _pwm_values[ch]; } uint8_t RCInput::read(uint16_t* periods, uint8_t len) { uint8_t i; for (i=0; i LINUX_RC_INPUT_NUM_CHANNELS){ len = LINUX_RC_INPUT_NUM_CHANNELS; } for (uint8_t i = 0; i < len; i++) { res |= set_override(i, overrides[i]); } return res; } bool RCInput::set_override(uint8_t channel, int16_t override) { if (override < 0) return false; /* -1: no change. */ if (channel < LINUX_RC_INPUT_NUM_CHANNELS) { _override[channel] = override; if (override != 0) { new_rc_input = true; return true; } } return false; } void RCInput::clear_overrides() { for (uint8_t i = 0; i < LINUX_RC_INPUT_NUM_CHANNELS; i++) { _override[i] = 0; } } /* process a PPM-sum pulse of the given width */ void RCInput::_process_ppmsum_pulse(uint16_t width_usec) { if (width_usec >= 2700) { // a long pulse indicates the end of a frame. Reset the // channel counter so next pulse is channel 0 if (ppm_state._channel_counter >= 5) { for (uint8_t i=0; i 700 && width_usec < 2300) { // take a reading for the current channel // buffer these ppm_state._pulse_capt[ppm_state._channel_counter] = width_usec; // move to next channel ppm_state._channel_counter++; } // if we have reached the maximum supported channels then // mark as unsynchronised, so we wait for a wide pulse if (ppm_state._channel_counter >= LINUX_RC_INPUT_NUM_CHANNELS) { for (uint8_t i=0; i 10) { // invalid data as last two bits must be stop bits goto reset; } // pull in the high bits sbus_state.bytes[byte_ofs] |= ((1U< 12) { nlow = 12 - bit_ofs; } bits_s1 -= nlow; sbus_state.bit_ofs += nlow; if (sbus_state.bit_ofs == 25*12 && bits_s1 > 12) { // we have a full frame uint8_t bytes[25]; uint8_t i; for (i=0; i<25; i++) { // get inverted data uint16_t v = ~sbus_state.bytes[i]; // check start bit if ((v & 1) != 0) { goto reset; } // check stop bits if ((v & 0xC00) != 0xC00) { goto reset; } // check parity uint8_t parity = 0, j; for (j=1; j<=8; j++) { parity ^= (v & (1U<>9) { goto reset; } bytes[i] = ((v>>1) & 0xFF); } uint16_t values[LINUX_RC_INPUT_NUM_CHANNELS]; uint16_t num_values=0; bool sbus_failsafe=false, sbus_frame_drop=false; if (sbus_decode(bytes, values, &num_values, &sbus_failsafe, &sbus_frame_drop, LINUX_RC_INPUT_NUM_CHANNELS) && num_values >= 5) { for (i=0; i 12) { // break goto reset; } return; reset: memset(&sbus_state, 0, sizeof(sbus_state)); } void RCInput::_process_dsm_pulse(uint16_t width_s0, uint16_t width_s1) { // convert to bit widths, allowing for up to 1usec error, assuming 115200 bps uint16_t bits_s0 = ((width_s0+4)*(uint32_t)115200) / 1000000; uint16_t bits_s1 = ((width_s1+4)*(uint32_t)115200) / 1000000; uint8_t bit_ofs, byte_ofs; uint16_t nbits; if (bits_s0 == 0 || bits_s1 == 0) { // invalid data goto reset; } byte_ofs = dsm_state.bit_ofs/10; bit_ofs = dsm_state.bit_ofs%10; if(byte_ofs > 15) { // invalid data goto reset; } // pull in the high bits nbits = bits_s0; if (nbits+bit_ofs > 10) { nbits = 10 - bit_ofs; } dsm_state.bytes[byte_ofs] |= ((1U< 10) { if (dsm_state.bit_ofs == 16*10) { // we have a full frame uint8_t bytes[16]; uint8_t i; for (i=0; i<16; i++) { // get raw data uint16_t v = dsm_state.bytes[i]; // check start bit if ((v & 1) != 0) { goto reset; } // check stop bits if ((v & 0x200) != 0x200) { goto reset; } bytes[i] = ((v>>1) & 0xFF); } uint16_t values[8]; uint16_t num_values=0; if (dsm_decode(hal.scheduler->micros64(), bytes, values, &num_values, 8) && num_values >= 5) { for (i=0; i 10) { // invalid data goto reset; } // pull in the low bits dsm_state.bit_ofs += bits_s1; return; reset: memset(&dsm_state, 0, sizeof(dsm_state)); } /* process a RC input pulse of the given width */ void RCInput::_process_rc_pulse(uint16_t width_s0, uint16_t width_s1) { #if 0 // useful for debugging static FILE *rclog; if (rclog == NULL) { rclog = fopen("/tmp/rcin.log", "w"); } if (rclog) { fprintf(rclog, "%u %u\n", (unsigned)width_s0, (unsigned)width_s1); } #endif // treat as PPM-sum _process_ppmsum_pulse(width_s0 + width_s1); // treat as SBUS _process_sbus_pulse(width_s0, width_s1); // treat as DSM _process_dsm_pulse(width_s0, width_s1); } /* * Update channel values directly */ void RCInput::_update_periods(uint16_t *periods, uint8_t len) { if (len > LINUX_RC_INPUT_NUM_CHANNELS) { len = LINUX_RC_INPUT_NUM_CHANNELS; } for (unsigned int i=0; i < len; i++) { _pwm_values[i] = periods[i]; } _num_channels = len; new_rc_input = true; } #endif // CONFIG_HAL_BOARD