2011-03-19 07:20:11 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2011-02-25 01:33:39 -04:00
|
|
|
|
2012-11-11 09:11:12 -04:00
|
|
|
// Function that will read the radio data, limit servos and trigger a failsafe
|
2011-02-25 01:33:39 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
2012-08-04 13:39:20 -03:00
|
|
|
|
2011-10-27 15:34:00 -03:00
|
|
|
static void default_dead_zones()
|
|
|
|
{
|
2013-07-11 11:15:11 -03:00
|
|
|
g.rc_1.set_default_dead_zone(30);
|
|
|
|
g.rc_2.set_default_dead_zone(30);
|
2012-08-16 21:50:02 -03:00
|
|
|
#if FRAME_CONFIG == HELI_FRAME
|
2013-07-11 11:15:11 -03:00
|
|
|
g.rc_3.set_default_dead_zone(10);
|
|
|
|
g.rc_4.set_default_dead_zone(15);
|
2013-11-08 02:52:48 -04:00
|
|
|
g.rc_8.set_default_dead_zone(10);
|
2012-08-16 21:50:02 -03:00
|
|
|
#else
|
2013-07-11 11:15:11 -03:00
|
|
|
g.rc_3.set_default_dead_zone(30);
|
|
|
|
g.rc_4.set_default_dead_zone(40);
|
2012-08-16 21:50:02 -03:00
|
|
|
#endif
|
2013-07-11 11:15:11 -03:00
|
|
|
g.rc_6.set_default_dead_zone(0);
|
2011-10-27 15:34:00 -03:00
|
|
|
}
|
2011-02-25 01:33:39 -04:00
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void init_rc_in()
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2012-08-16 21:50:02 -03:00
|
|
|
// set rc channel ranges
|
2013-08-11 00:51:08 -03:00
|
|
|
g.rc_1.set_angle(ROLL_PITCH_INPUT_MAX);
|
|
|
|
g.rc_2.set_angle(ROLL_PITCH_INPUT_MAX);
|
2015-03-16 01:35:57 -03:00
|
|
|
g.rc_3.set_range(g.throttle_min, THR_MAX);
|
2012-08-16 21:50:02 -03:00
|
|
|
g.rc_4.set_angle(4500);
|
|
|
|
|
2012-12-09 03:44:42 -04:00
|
|
|
g.rc_1.set_type(RC_CHANNEL_TYPE_ANGLE_RAW);
|
|
|
|
g.rc_2.set_type(RC_CHANNEL_TYPE_ANGLE_RAW);
|
|
|
|
g.rc_4.set_type(RC_CHANNEL_TYPE_ANGLE_RAW);
|
2012-08-16 21:50:02 -03:00
|
|
|
|
2013-10-31 03:22:34 -03:00
|
|
|
//set auxiliary servo ranges
|
2012-08-16 21:50:02 -03:00
|
|
|
g.rc_5.set_range(0,1000);
|
|
|
|
g.rc_6.set_range(0,1000);
|
|
|
|
g.rc_7.set_range(0,1000);
|
|
|
|
g.rc_8.set_range(0,1000);
|
|
|
|
|
2013-07-11 11:15:11 -03:00
|
|
|
// set default dead zones
|
|
|
|
default_dead_zones();
|
2014-10-08 09:52:16 -03:00
|
|
|
|
|
|
|
// initialise throttle_zero flag
|
|
|
|
ap.throttle_zero = true;
|
2010-12-27 19:09:08 -04:00
|
|
|
}
|
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// init_rc_out -- initialise motors and check if pilot wants to perform ESC calibration
|
2011-07-17 07:32:00 -03:00
|
|
|
static void init_rc_out()
|
2010-12-27 19:09:08 -04:00
|
|
|
{
|
2012-08-16 21:50:02 -03:00
|
|
|
motors.set_update_rate(g.rc_speed);
|
|
|
|
motors.set_frame_orientation(g.frame_orientation);
|
|
|
|
motors.Init(); // motor initialisation
|
|
|
|
motors.set_min_throttle(g.throttle_min);
|
|
|
|
|
2012-12-12 19:46:20 -04:00
|
|
|
for(uint8_t i = 0; i < 5; i++) {
|
2012-08-16 21:50:02 -03:00
|
|
|
delay(20);
|
|
|
|
read_radio();
|
|
|
|
}
|
2011-03-06 20:57:06 -04:00
|
|
|
|
2012-08-16 21:50:02 -03:00
|
|
|
// we want the input to be scaled correctly
|
|
|
|
g.rc_3.set_range_out(0,1000);
|
2012-05-31 18:59:03 -03:00
|
|
|
|
2014-09-19 10:16:31 -03:00
|
|
|
// check if we should enter esc calibration mode
|
|
|
|
esc_calibration_startup_check();
|
2012-08-16 21:50:02 -03:00
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// enable output to motors
|
|
|
|
pre_arm_rc_checks();
|
|
|
|
if (ap.pre_arm_rc_check) {
|
2012-08-16 21:50:02 -03:00
|
|
|
output_min();
|
|
|
|
}
|
2014-11-20 03:32:13 -04:00
|
|
|
|
|
|
|
// setup correct scaling for ESCs like the UAVCAN PX4ESC which
|
|
|
|
// take a proportion of speed. Note: this assumes rc_3 is
|
|
|
|
// throttle and should really use rcmap.
|
|
|
|
hal.rcout->set_esc_scaling(g.rc_3.radio_min, g.rc_3.radio_max);
|
2011-03-26 18:03:20 -03:00
|
|
|
}
|
2011-03-06 20:57:06 -04:00
|
|
|
|
2013-05-16 04:32:00 -03:00
|
|
|
// output_min - enable and output lowest possible value to motors
|
2011-03-26 18:03:20 -03:00
|
|
|
void output_min()
|
|
|
|
{
|
2012-08-16 21:50:02 -03:00
|
|
|
// enable motors
|
|
|
|
motors.enable();
|
|
|
|
motors.output_min();
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2012-11-13 05:18:21 -04:00
|
|
|
|
2011-07-17 07:32:00 -03:00
|
|
|
static void read_radio()
|
2010-12-26 01:25:52 -04:00
|
|
|
{
|
2014-10-07 11:01:15 -03:00
|
|
|
static uint32_t last_update_ms = 0;
|
|
|
|
uint32_t tnow_ms = millis();
|
|
|
|
|
2014-03-25 00:40:50 -03:00
|
|
|
if (hal.rcin->new_input()) {
|
2014-10-07 11:01:15 -03:00
|
|
|
last_update_ms = tnow_ms;
|
2013-10-08 03:25:14 -03:00
|
|
|
ap.new_radio_frame = true;
|
2012-12-12 21:37:32 -04:00
|
|
|
uint16_t periods[8];
|
|
|
|
hal.rcin->read(periods,8);
|
2013-06-03 09:22:26 -03:00
|
|
|
g.rc_1.set_pwm(periods[rcmap.roll()-1]);
|
|
|
|
g.rc_2.set_pwm(periods[rcmap.pitch()-1]);
|
2012-11-11 09:11:12 -04:00
|
|
|
|
2013-06-03 09:22:26 -03:00
|
|
|
set_throttle_and_failsafe(periods[rcmap.throttle()-1]);
|
2014-10-08 09:52:16 -03:00
|
|
|
set_throttle_zero_flag(g.rc_3.control_in);
|
2012-11-11 09:11:12 -04:00
|
|
|
|
2013-06-03 09:22:26 -03:00
|
|
|
g.rc_4.set_pwm(periods[rcmap.yaw()-1]);
|
2012-12-12 21:37:32 -04:00
|
|
|
g.rc_5.set_pwm(periods[4]);
|
|
|
|
g.rc_6.set_pwm(periods[5]);
|
|
|
|
g.rc_7.set_pwm(periods[6]);
|
|
|
|
g.rc_8.set_pwm(periods[7]);
|
2013-10-21 10:39:25 -03:00
|
|
|
|
2014-09-23 10:55:19 -03:00
|
|
|
// read channels 9 ~ 14
|
|
|
|
for (uint8_t i=8; i<RC_MAX_CHANNELS; i++) {
|
|
|
|
if (RC_Channel::rc_channel(i) != NULL) {
|
|
|
|
RC_Channel::rc_channel(i)->set_pwm(RC_Channel::rc_channel(i)->read());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-21 10:39:25 -03:00
|
|
|
// flag we must have an rc receiver attached
|
|
|
|
if (!failsafe.rc_override_active) {
|
|
|
|
ap.rc_receiver_present = true;
|
|
|
|
}
|
2014-04-02 22:19:44 -03:00
|
|
|
|
|
|
|
// update output on any aux channels, for manual passthru
|
|
|
|
RC_Channel_aux::output_ch_all();
|
2012-11-13 05:18:21 -04:00
|
|
|
}else{
|
2014-10-07 11:01:15 -03:00
|
|
|
uint32_t elapsed = tnow_ms - last_update_ms;
|
2014-07-16 23:41:43 -03:00
|
|
|
// turn on throttle failsafe if no update from the RC Radio for 500ms or 2000ms if we are using RC_OVERRIDE
|
2014-07-21 07:13:38 -03:00
|
|
|
if (((!failsafe.rc_override_active && (elapsed >= FS_RADIO_TIMEOUT_MS)) || (failsafe.rc_override_active && (elapsed >= FS_RADIO_RC_OVERRIDE_TIMEOUT_MS))) &&
|
2014-10-24 23:15:06 -03:00
|
|
|
(g.failsafe_throttle && (ap.rc_receiver_present||motors.armed()) && !failsafe.radio)) {
|
2014-07-16 23:49:21 -03:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_RADIO, ERROR_CODE_RADIO_LATE_FRAME);
|
|
|
|
set_failsafe_radio(true);
|
2012-11-13 05:18:21 -04:00
|
|
|
}
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2012-11-11 09:11:12 -04:00
|
|
|
|
2013-09-26 05:54:33 -03:00
|
|
|
#define FS_COUNTER 3 // radio failsafe kicks in after 3 consecutive throttle values below failsafe_throttle_value
|
2012-11-11 09:11:12 -04:00
|
|
|
static void set_throttle_and_failsafe(uint16_t throttle_pwm)
|
2011-02-24 01:56:59 -04:00
|
|
|
{
|
2012-11-11 09:11:12 -04:00
|
|
|
// if failsafe not enabled pass through throttle and exit
|
2012-12-10 10:38:43 -04:00
|
|
|
if(g.failsafe_throttle == FS_THR_DISABLED) {
|
2012-11-11 09:11:12 -04:00
|
|
|
g.rc_3.set_pwm(throttle_pwm);
|
2012-08-16 21:50:02 -03:00
|
|
|
return;
|
2012-11-11 09:11:12 -04:00
|
|
|
}
|
2012-08-16 21:50:02 -03:00
|
|
|
|
2012-11-11 09:11:12 -04:00
|
|
|
//check for low throttle value
|
2012-12-10 10:38:43 -04:00
|
|
|
if (throttle_pwm < (uint16_t)g.failsafe_throttle_value) {
|
2012-11-11 09:11:12 -04:00
|
|
|
|
|
|
|
// if we are already in failsafe or motors not armed pass through throttle and exit
|
2014-10-24 23:15:06 -03:00
|
|
|
if (failsafe.radio || !(ap.rc_receiver_present || motors.armed())) {
|
2012-11-11 09:11:12 -04:00
|
|
|
g.rc_3.set_pwm(throttle_pwm);
|
|
|
|
return;
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
|
|
|
|
2012-11-11 09:11:12 -04:00
|
|
|
// check for 3 low throttle values
|
|
|
|
// Note: we do not pass through the low throttle until 3 low throttle values are recieved
|
2013-09-26 05:54:33 -03:00
|
|
|
failsafe.radio_counter++;
|
|
|
|
if( failsafe.radio_counter >= FS_COUNTER ) {
|
|
|
|
failsafe.radio_counter = FS_COUNTER; // check to ensure we don't overflow the counter
|
2013-03-16 05:14:21 -03:00
|
|
|
set_failsafe_radio(true);
|
2012-11-11 09:11:12 -04:00
|
|
|
g.rc_3.set_pwm(throttle_pwm); // pass through failsafe throttle
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2012-11-11 09:11:12 -04:00
|
|
|
}else{
|
|
|
|
// we have a good throttle so reduce failsafe counter
|
2013-09-26 05:54:33 -03:00
|
|
|
failsafe.radio_counter--;
|
|
|
|
if( failsafe.radio_counter <= 0 ) {
|
|
|
|
failsafe.radio_counter = 0; // check to ensure we don't underflow the counter
|
2012-11-11 09:11:12 -04:00
|
|
|
|
|
|
|
// disengage failsafe after three (nearly) consecutive valid throttle values
|
2013-09-26 05:54:33 -03:00
|
|
|
if (failsafe.radio) {
|
2013-03-16 05:14:21 -03:00
|
|
|
set_failsafe_radio(false);
|
2012-11-11 09:11:12 -04:00
|
|
|
}
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2012-11-11 09:11:12 -04:00
|
|
|
// pass through throttle
|
|
|
|
g.rc_3.set_pwm(throttle_pwm);
|
2012-08-16 21:50:02 -03:00
|
|
|
}
|
2011-02-24 01:56:59 -04:00
|
|
|
}
|
|
|
|
|
2014-10-08 09:52:16 -03:00
|
|
|
#define THROTTLE_ZERO_DEBOUNCE_TIME_MS 400
|
|
|
|
// set_throttle_zero_flag - set throttle_zero flag from debounced throttle control_in
|
|
|
|
static void set_throttle_zero_flag(int16_t throttle_control)
|
|
|
|
{
|
|
|
|
static uint32_t last_nonzero_throttle_ms = 0;
|
|
|
|
uint32_t tnow_ms = millis();
|
|
|
|
|
|
|
|
// if non-zero throttle immediately set as non-zero
|
|
|
|
if (throttle_control > 0) {
|
|
|
|
last_nonzero_throttle_ms = tnow_ms;
|
|
|
|
ap.throttle_zero = false;
|
|
|
|
} else if (tnow_ms - last_nonzero_throttle_ms > THROTTLE_ZERO_DEBOUNCE_TIME_MS) {
|
|
|
|
ap.throttle_zero = true;
|
|
|
|
}
|
2015-03-16 01:35:57 -03:00
|
|
|
}
|