mirror of https://github.com/ArduPilot/ardupilot
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#if CONFIG_HAL_BOARD_SUBTYPE == HAL_BOARD_SUBTYPE_LINUX_BEBOP
|
|
#include "RCInput_UDP.h"
|
|
#include <stdio.h>
|
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
using namespace Linux;
|
|
|
|
LinuxRCInput_UDP::LinuxRCInput_UDP() :
|
|
_port(0),
|
|
_last_buf_ts(0),
|
|
_last_buf_seq(0)
|
|
{}
|
|
|
|
void LinuxRCInput_UDP::init(void *)
|
|
{
|
|
_port = RCINPUT_UDP_DEF_PORT;
|
|
if(!_socket.bind("0.0.0.0", _port)) {
|
|
hal.console->printf("failed to bind UDP socket\n");
|
|
}
|
|
|
|
_socket.set_blocking(false);
|
|
|
|
return;
|
|
}
|
|
|
|
void LinuxRCInput_UDP::_timer_tick(void)
|
|
{
|
|
uint64_t delay;
|
|
uint16_t seq_inc;
|
|
|
|
/* Read from udp */
|
|
while (_socket.recv(&_buf, sizeof(_buf), 10) == sizeof(_buf)) {
|
|
if (_buf.version != RCINPUT_UDP_VERSION) {
|
|
hal.console->printf("bad protocol version for UDP RCInput\n");
|
|
return;
|
|
}
|
|
if (_last_buf_ts != 0 &&
|
|
(delay = _buf.timestamp_us - _last_buf_ts) > 100000) {
|
|
hal.console->printf("no rc cmds received for %llu\n", delay);
|
|
}
|
|
_last_buf_ts = _buf.timestamp_us;
|
|
|
|
if ((seq_inc = _buf.sequence - _last_buf_seq) > 10) {
|
|
hal.console->printf("gap in rc cmds : %u\n", seq_inc);
|
|
}
|
|
_last_buf_seq = _buf.sequence;
|
|
|
|
_update_periods(_buf.pwms, RCINPUT_UDP_NUM_CHANNELS);
|
|
}
|
|
}
|
|
#endif
|