2015-05-13 03:09:36 -03:00
|
|
|
#include "Plane.h"
|
|
|
|
|
2011-09-08 22:29:39 -03:00
|
|
|
//Function that will read the radio data, limit servos and trigger a failsafe
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2013-06-03 03:42:38 -03:00
|
|
|
/*
|
|
|
|
allow for runtime change of control channel ordering
|
|
|
|
*/
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::set_control_channels(void)
|
2013-06-03 03:42:38 -03:00
|
|
|
{
|
2015-04-15 22:16:30 -03:00
|
|
|
if (g.rudder_only) {
|
2015-04-16 10:30:32 -03:00
|
|
|
// in rudder only mode the roll and rudder channels are the
|
|
|
|
// same.
|
2016-10-22 07:27:57 -03:00
|
|
|
channel_roll = RC_Channels::rc_channel(rcmap.yaw()-1);
|
2015-04-15 22:16:30 -03:00
|
|
|
} else {
|
2016-10-22 07:27:57 -03:00
|
|
|
channel_roll = RC_Channels::rc_channel(rcmap.roll()-1);
|
2015-04-15 22:16:30 -03:00
|
|
|
}
|
2016-10-22 07:27:57 -03:00
|
|
|
channel_pitch = RC_Channels::rc_channel(rcmap.pitch()-1);
|
|
|
|
channel_throttle = RC_Channels::rc_channel(rcmap.throttle()-1);
|
|
|
|
channel_rudder = RC_Channels::rc_channel(rcmap.yaw()-1);
|
2011-09-08 22:29:39 -03:00
|
|
|
|
2012-08-21 23:19:50 -03:00
|
|
|
// set rc channel ranges
|
2013-06-03 02:32:08 -03:00
|
|
|
channel_roll->set_angle(SERVO_MAX);
|
|
|
|
channel_pitch->set_angle(SERVO_MAX);
|
|
|
|
channel_rudder->set_angle(SERVO_MAX);
|
2018-11-09 18:38:43 -04:00
|
|
|
if (!have_reverse_thrust()) {
|
2016-01-30 03:22:21 -04:00
|
|
|
// normal operation
|
2016-10-22 07:27:57 -03:00
|
|
|
channel_throttle->set_range(100);
|
2016-01-30 03:22:21 -04:00
|
|
|
} else {
|
|
|
|
// reverse thrust
|
2018-11-09 19:00:20 -04:00
|
|
|
if (have_reverse_throttle_rc_option) {
|
|
|
|
// when we have a reverse throttle RC option setup we use throttle
|
|
|
|
// as a range, and rely on the RC switch to get reverse thrust
|
|
|
|
channel_throttle->set_range(100);
|
|
|
|
} else {
|
|
|
|
channel_throttle->set_angle(100);
|
|
|
|
}
|
2017-02-12 21:03:22 -04:00
|
|
|
SRV_Channels::set_angle(SRV_Channel::k_throttle, 100);
|
|
|
|
SRV_Channels::set_angle(SRV_Channel::k_throttleLeft, 100);
|
|
|
|
SRV_Channels::set_angle(SRV_Channel::k_throttleRight, 100);
|
2016-01-30 03:22:21 -04:00
|
|
|
}
|
2014-01-15 07:28:00 -04:00
|
|
|
|
2020-09-02 05:31:38 -03:00
|
|
|
// update flap and airbrake channel assignment
|
|
|
|
channel_flap = rc().find_channel_for_option(RC_Channel::AUX_FUNC::FLAP);
|
2020-09-02 04:33:02 -03:00
|
|
|
channel_airbrake = rc().find_channel_for_option(RC_Channel::AUX_FUNC::AIRBRAKE);
|
|
|
|
|
2021-09-10 03:28:21 -03:00
|
|
|
#if HAL_QUADPLANE_ENABLED
|
2020-06-09 19:05:07 -03:00
|
|
|
// update manual forward throttle channel assignment
|
|
|
|
quadplane.rc_fwd_thr_ch = rc().find_channel_for_option(RC_Channel::AUX_FUNC::FWD_THR);
|
2021-09-10 03:28:21 -03:00
|
|
|
#endif
|
2020-06-09 19:05:07 -03:00
|
|
|
|
2021-09-10 03:28:21 -03:00
|
|
|
bool set_throttle_esc_scaling = true;
|
|
|
|
#if HAL_QUADPLANE_ENABLED
|
|
|
|
set_throttle_esc_scaling = !quadplane.enable;
|
|
|
|
#endif
|
|
|
|
if (set_throttle_esc_scaling) {
|
2019-10-17 03:03:48 -03:00
|
|
|
// setup correct scaling for ESCs like the UAVCAN ESCs which
|
2018-05-05 04:54:57 -03:00
|
|
|
// take a proportion of speed. For quadplanes we use AP_Motors
|
|
|
|
// scaling
|
|
|
|
g2.servo_channels.set_esc_scaling_for(SRV_Channel::k_throttle);
|
|
|
|
}
|
2013-06-03 08:20:39 -03:00
|
|
|
}
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2013-06-03 08:20:39 -03:00
|
|
|
/*
|
|
|
|
initialise RC input channels
|
|
|
|
*/
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::init_rc_in()
|
2013-06-03 08:20:39 -03:00
|
|
|
{
|
2012-08-21 23:19:50 -03:00
|
|
|
// set rc dead zones
|
2013-07-11 11:12:26 -03:00
|
|
|
channel_roll->set_default_dead_zone(30);
|
|
|
|
channel_pitch->set_default_dead_zone(30);
|
|
|
|
channel_rudder->set_default_dead_zone(30);
|
2013-07-13 00:19:25 -03:00
|
|
|
channel_throttle->set_default_dead_zone(30);
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2013-06-03 03:42:38 -03:00
|
|
|
/*
|
2016-06-30 03:48:30 -03:00
|
|
|
initialise RC output for main channels. This is done early to allow
|
|
|
|
for BRD_SAFETYENABLE=0 and early servo control
|
2013-06-03 03:42:38 -03:00
|
|
|
*/
|
2016-06-30 03:48:30 -03:00
|
|
|
void Plane::init_rc_out_main()
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2015-09-06 20:17:22 -03:00
|
|
|
/*
|
|
|
|
change throttle trim to minimum throttle. This prevents a
|
|
|
|
configuration error where the user sets CH3_TRIM incorrectly and
|
|
|
|
the motor may start on power up
|
|
|
|
*/
|
2018-11-09 18:38:43 -04:00
|
|
|
if (!have_reverse_thrust()) {
|
2016-10-22 07:27:57 -03:00
|
|
|
SRV_Channels::set_trim_to_min_for(SRV_Channel::k_throttle);
|
2022-02-16 13:10:00 -04:00
|
|
|
SRV_Channels::set_trim_to_min_for(SRV_Channel::k_throttleLeft);
|
|
|
|
SRV_Channels::set_trim_to_min_for(SRV_Channel::k_throttleRight);
|
2013-12-19 20:59:45 -04:00
|
|
|
}
|
2016-06-30 03:48:30 -03:00
|
|
|
|
2019-11-24 21:52:19 -04:00
|
|
|
SRV_Channels::set_failsafe_limit(SRV_Channel::k_aileron, SRV_Channel::Limit::TRIM);
|
|
|
|
SRV_Channels::set_failsafe_limit(SRV_Channel::k_elevator, SRV_Channel::Limit::TRIM);
|
|
|
|
SRV_Channels::set_failsafe_limit(SRV_Channel::k_throttle, SRV_Channel::Limit::TRIM);
|
2022-02-16 13:10:00 -04:00
|
|
|
SRV_Channels::set_failsafe_limit(SRV_Channel::k_throttleLeft, SRV_Channel::Limit::TRIM);
|
|
|
|
SRV_Channels::set_failsafe_limit(SRV_Channel::k_throttleRight, SRV_Channel::Limit::TRIM);
|
2019-11-24 21:52:19 -04:00
|
|
|
SRV_Channels::set_failsafe_limit(SRV_Channel::k_rudder, SRV_Channel::Limit::TRIM);
|
2021-07-18 10:33:16 -03:00
|
|
|
|
2016-06-30 03:48:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
initialise RC output channels for aux channels
|
|
|
|
*/
|
|
|
|
void Plane::init_rc_out_aux()
|
|
|
|
{
|
2016-10-22 07:27:57 -03:00
|
|
|
SRV_Channels::enable_aux_servos();
|
2012-08-04 13:39:20 -03:00
|
|
|
|
2016-10-11 19:29:37 -03:00
|
|
|
servos_output();
|
|
|
|
|
2014-04-20 19:37:56 -03:00
|
|
|
// setup PWM values to send if the FMU firmware dies
|
2018-08-22 04:17:41 -03:00
|
|
|
// allows any VTOL motors to shut off
|
|
|
|
SRV_Channels::setup_failsafe_trim_all_non_motors();
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2015-07-23 08:47:37 -03:00
|
|
|
/*
|
|
|
|
check for pilot input on rudder stick for arming/disarming
|
|
|
|
*/
|
2015-07-16 14:47:08 -03:00
|
|
|
void Plane::rudder_arm_disarm_check()
|
2013-12-11 02:01:37 -04:00
|
|
|
{
|
2015-07-16 14:47:08 -03:00
|
|
|
if (!arming.is_armed()) {
|
|
|
|
// when not armed, full right rudder starts arming counter
|
ArduPlane: Fix up after refactoring RC_Channel class
Further to refactor of RC_Channel class which included
adding get_xx set_xx methods, change reads and writes to the public members
to calls to get and set functionsss
old public member(int16_t) get function -> int16_t set function (int16_t)
(expression where c is an object of type RC_Channel)
c.radio_in c.get_radio_in() c.set_radio_in(v)
c.control_in c.get_control_in() c.set_control_in(v)
c.servo_out c.get_servo_out() c.set_servo_out(v)
c.pwm_out c.get_pwm_out() // use existing
c.radio_out c.get_radio_out() c.set_radio_out(v)
c.radio_max c.get_radio_max() c.set_radio_max(v)
c.radio_min c.get_radio_min() c.set_radio_min(v)
c.radio_trim c.get_radio_trim() c.set_radio_trim(v);
c.min_max_configured() // return true if min and max are configured
Because data members of RC_Channels are now private and so cannot be written directly
some overloads are provided in the Plane classes to provide the old functionality
new overload Plane::stick_mix_channel(RC_Channel *channel)
which forwards to the previously existing
void stick_mix_channel(RC_Channel *channel, int16_t &servo_out);
new overload Plane::channel_output_mixer(Rc_Channel* , RC_Channel*)const
which forwards to
(uint8_t mixing_type, int16_t & chan1, int16_t & chan2)const;
Rename functions
RC_Channel_aux::set_radio_trim(Aux_servo_function_t function)
to RC_Channel_aux::set_trim_to_radio_in_for(Aux_servo_function_t function)
RC_Channel_aux::set_servo_out(Aux_servo_function_t function, int16_t value)
to RC_Channel_aux::set_servo_out_for(Aux_servo_function_t function, int16_t value)
Rationale:
RC_Channel is a complicated class, which combines
several functionalities dealing with stick inputs
in pwm and logical units, logical and actual actuator
outputs, unit conversion etc, etc
The intent of this PR is to clarify existing use of
the class. At the basic level it should now be possible
to grep all places where private variable is set by
searching for the set_xx function.
(The wider purpose is to provide a more generic and
logically simpler method of output mixing. This is a small step)
2016-05-08 05:33:02 -03:00
|
|
|
if (channel_rudder->get_control_in() > 4000) {
|
2015-07-16 14:47:08 -03:00
|
|
|
uint32_t now = millis();
|
|
|
|
|
|
|
|
if (rudder_arm_timer == 0 ||
|
|
|
|
now - rudder_arm_timer < 3000) {
|
|
|
|
|
2015-07-23 08:47:37 -03:00
|
|
|
if (rudder_arm_timer == 0) {
|
|
|
|
rudder_arm_timer = now;
|
|
|
|
}
|
2015-07-16 14:47:08 -03:00
|
|
|
} else {
|
|
|
|
//time to arm!
|
2019-05-03 20:35:12 -03:00
|
|
|
arming.arm(AP_Arming::Method::RUDDER);
|
2015-07-16 14:47:08 -03:00
|
|
|
rudder_arm_timer = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// not at full right rudder
|
|
|
|
rudder_arm_timer = 0;
|
|
|
|
}
|
2020-12-06 19:47:39 -04:00
|
|
|
} else {
|
|
|
|
// full left rudder starts disarming counter
|
ArduPlane: Fix up after refactoring RC_Channel class
Further to refactor of RC_Channel class which included
adding get_xx set_xx methods, change reads and writes to the public members
to calls to get and set functionsss
old public member(int16_t) get function -> int16_t set function (int16_t)
(expression where c is an object of type RC_Channel)
c.radio_in c.get_radio_in() c.set_radio_in(v)
c.control_in c.get_control_in() c.set_control_in(v)
c.servo_out c.get_servo_out() c.set_servo_out(v)
c.pwm_out c.get_pwm_out() // use existing
c.radio_out c.get_radio_out() c.set_radio_out(v)
c.radio_max c.get_radio_max() c.set_radio_max(v)
c.radio_min c.get_radio_min() c.set_radio_min(v)
c.radio_trim c.get_radio_trim() c.set_radio_trim(v);
c.min_max_configured() // return true if min and max are configured
Because data members of RC_Channels are now private and so cannot be written directly
some overloads are provided in the Plane classes to provide the old functionality
new overload Plane::stick_mix_channel(RC_Channel *channel)
which forwards to the previously existing
void stick_mix_channel(RC_Channel *channel, int16_t &servo_out);
new overload Plane::channel_output_mixer(Rc_Channel* , RC_Channel*)const
which forwards to
(uint8_t mixing_type, int16_t & chan1, int16_t & chan2)const;
Rename functions
RC_Channel_aux::set_radio_trim(Aux_servo_function_t function)
to RC_Channel_aux::set_trim_to_radio_in_for(Aux_servo_function_t function)
RC_Channel_aux::set_servo_out(Aux_servo_function_t function, int16_t value)
to RC_Channel_aux::set_servo_out_for(Aux_servo_function_t function, int16_t value)
Rationale:
RC_Channel is a complicated class, which combines
several functionalities dealing with stick inputs
in pwm and logical units, logical and actual actuator
outputs, unit conversion etc, etc
The intent of this PR is to clarify existing use of
the class. At the basic level it should now be possible
to grep all places where private variable is set by
searching for the set_xx function.
(The wider purpose is to provide a more generic and
logically simpler method of output mixing. This is a small step)
2016-05-08 05:33:02 -03:00
|
|
|
if (channel_rudder->get_control_in() < -4000) {
|
2015-07-16 14:47:08 -03:00
|
|
|
uint32_t now = millis();
|
|
|
|
|
|
|
|
if (rudder_arm_timer == 0 ||
|
|
|
|
now - rudder_arm_timer < 3000) {
|
2015-07-23 08:47:37 -03:00
|
|
|
if (rudder_arm_timer == 0) {
|
|
|
|
rudder_arm_timer = now;
|
|
|
|
}
|
2015-07-16 14:47:08 -03:00
|
|
|
} else {
|
|
|
|
//time to disarm!
|
2020-02-21 09:09:58 -04:00
|
|
|
arming.disarm(AP_Arming::Method::RUDDER);
|
2015-07-16 14:47:08 -03:00
|
|
|
rudder_arm_timer = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// not at full left rudder
|
|
|
|
rudder_arm_timer = 0;
|
|
|
|
}
|
2020-12-06 19:47:39 -04:00
|
|
|
}
|
2013-11-27 22:19:34 -04:00
|
|
|
}
|
|
|
|
|
2015-05-13 03:09:36 -03:00
|
|
|
void Plane::read_radio()
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2018-04-26 22:01:37 -03:00
|
|
|
if (!rc().read_input()) {
|
2017-10-27 17:23:28 -03:00
|
|
|
control_failsafe();
|
2013-12-19 18:41:15 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-25 23:57:39 -03:00
|
|
|
if (!failsafe.rc_failsafe)
|
2016-03-24 16:17:41 -03:00
|
|
|
{
|
|
|
|
failsafe.AFS_last_valid_rc_ms = millis();
|
|
|
|
}
|
|
|
|
|
2019-08-25 23:57:39 -03:00
|
|
|
if (rc_throttle_value_ok()) {
|
|
|
|
failsafe.last_valid_rc_ms = millis();
|
|
|
|
}
|
2013-12-19 18:41:15 -04:00
|
|
|
|
2017-10-27 17:23:28 -03:00
|
|
|
control_failsafe();
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2020-12-14 08:47:05 -04:00
|
|
|
#if AC_FENCE == ENABLED
|
|
|
|
const bool stickmixing = fence_stickmixing();
|
|
|
|
#else
|
|
|
|
const bool stickmixing = true;
|
|
|
|
#endif
|
2020-07-30 17:26:49 -03:00
|
|
|
airspeed_nudge_cm = 0;
|
|
|
|
throttle_nudge = 0;
|
2020-12-14 08:47:05 -04:00
|
|
|
if (g.throttle_nudge
|
|
|
|
&& channel_throttle->get_control_in() > 50
|
|
|
|
&& stickmixing) {
|
2019-02-22 02:54:38 -04:00
|
|
|
float nudge = (channel_throttle->get_control_in() - 50) * 0.02f;
|
2015-01-19 20:28:35 -04:00
|
|
|
if (ahrs.airspeed_sensor_enabled()) {
|
2016-11-17 21:07:10 -04:00
|
|
|
airspeed_nudge_cm = (aparm.airspeed_max * 100 - aparm.airspeed_cruise_cm) * nudge;
|
2012-08-21 23:19:50 -03:00
|
|
|
} else {
|
2013-06-26 07:48:45 -03:00
|
|
|
throttle_nudge = (aparm.throttle_max - aparm.throttle_cruise) * nudge;
|
2012-08-21 23:19:50 -03:00
|
|
|
}
|
|
|
|
}
|
2013-11-27 22:19:34 -04:00
|
|
|
|
2015-07-16 14:47:08 -03:00
|
|
|
rudder_arm_disarm_check();
|
2015-04-16 10:30:32 -03:00
|
|
|
|
2021-09-10 03:28:21 -03:00
|
|
|
#if HAL_QUADPLANE_ENABLED
|
2018-08-20 21:38:41 -03:00
|
|
|
// potentially swap inputs for tailsitters
|
2021-07-14 17:15:49 -03:00
|
|
|
quadplane.tailsitter.check_input();
|
2021-09-10 03:28:21 -03:00
|
|
|
#endif
|
2018-08-20 21:38:41 -03:00
|
|
|
|
|
|
|
// check for transmitter tuning changes
|
2019-01-15 13:46:13 -04:00
|
|
|
tuning.check_input(control_mode->mode_number());
|
2018-08-20 21:38:41 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
int16_t Plane::rudder_input(void)
|
|
|
|
{
|
2015-04-16 10:30:32 -03:00
|
|
|
if (g.rudder_only != 0) {
|
|
|
|
// in rudder only mode we discard rudder input and get target
|
|
|
|
// attitude from the roll channel.
|
2018-08-20 21:38:41 -03:00
|
|
|
return 0;
|
2015-04-16 10:30:32 -03:00
|
|
|
}
|
2016-04-16 07:26:43 -03:00
|
|
|
|
2018-08-20 21:38:41 -03:00
|
|
|
if ((g2.flight_options & FlightOptions::DIRECT_RUDDER_ONLY) &&
|
2019-01-15 13:46:13 -04:00
|
|
|
!(control_mode == &mode_manual || control_mode == &mode_stabilize || control_mode == &mode_acro)) {
|
2018-08-20 21:38:41 -03:00
|
|
|
// the user does not want any input except in these modes
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stick_mixing_enabled()) {
|
|
|
|
return channel_rudder->get_control_in();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-02-24 01:47:09 -04:00
|
|
|
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2017-10-27 17:23:28 -03:00
|
|
|
void Plane::control_failsafe()
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2020-07-24 21:22:32 -03:00
|
|
|
if (rc_failsafe_active()) {
|
2014-03-08 01:20:09 -04:00
|
|
|
// we do not have valid RC input. Set all primary channel
|
2014-03-08 02:22:24 -04:00
|
|
|
// control inputs to the trim value and throttle to min
|
ArduPlane: Fix up after refactoring RC_Channel class
Further to refactor of RC_Channel class which included
adding get_xx set_xx methods, change reads and writes to the public members
to calls to get and set functionsss
old public member(int16_t) get function -> int16_t set function (int16_t)
(expression where c is an object of type RC_Channel)
c.radio_in c.get_radio_in() c.set_radio_in(v)
c.control_in c.get_control_in() c.set_control_in(v)
c.servo_out c.get_servo_out() c.set_servo_out(v)
c.pwm_out c.get_pwm_out() // use existing
c.radio_out c.get_radio_out() c.set_radio_out(v)
c.radio_max c.get_radio_max() c.set_radio_max(v)
c.radio_min c.get_radio_min() c.set_radio_min(v)
c.radio_trim c.get_radio_trim() c.set_radio_trim(v);
c.min_max_configured() // return true if min and max are configured
Because data members of RC_Channels are now private and so cannot be written directly
some overloads are provided in the Plane classes to provide the old functionality
new overload Plane::stick_mix_channel(RC_Channel *channel)
which forwards to the previously existing
void stick_mix_channel(RC_Channel *channel, int16_t &servo_out);
new overload Plane::channel_output_mixer(Rc_Channel* , RC_Channel*)const
which forwards to
(uint8_t mixing_type, int16_t & chan1, int16_t & chan2)const;
Rename functions
RC_Channel_aux::set_radio_trim(Aux_servo_function_t function)
to RC_Channel_aux::set_trim_to_radio_in_for(Aux_servo_function_t function)
RC_Channel_aux::set_servo_out(Aux_servo_function_t function, int16_t value)
to RC_Channel_aux::set_servo_out_for(Aux_servo_function_t function, int16_t value)
Rationale:
RC_Channel is a complicated class, which combines
several functionalities dealing with stick inputs
in pwm and logical units, logical and actual actuator
outputs, unit conversion etc, etc
The intent of this PR is to clarify existing use of
the class. At the basic level it should now be possible
to grep all places where private variable is set by
searching for the set_xx function.
(The wider purpose is to provide a more generic and
logically simpler method of output mixing. This is a small step)
2016-05-08 05:33:02 -03:00
|
|
|
channel_roll->set_radio_in(channel_roll->get_radio_trim());
|
|
|
|
channel_pitch->set_radio_in(channel_pitch->get_radio_trim());
|
|
|
|
channel_rudder->set_radio_in(channel_rudder->get_radio_trim());
|
2014-04-09 18:43:48 -03:00
|
|
|
|
|
|
|
// note that we don't set channel_throttle->radio_in to radio_trim,
|
|
|
|
// as that would cause throttle failsafe to not activate
|
ArduPlane: Fix up after refactoring RC_Channel class
Further to refactor of RC_Channel class which included
adding get_xx set_xx methods, change reads and writes to the public members
to calls to get and set functionsss
old public member(int16_t) get function -> int16_t set function (int16_t)
(expression where c is an object of type RC_Channel)
c.radio_in c.get_radio_in() c.set_radio_in(v)
c.control_in c.get_control_in() c.set_control_in(v)
c.servo_out c.get_servo_out() c.set_servo_out(v)
c.pwm_out c.get_pwm_out() // use existing
c.radio_out c.get_radio_out() c.set_radio_out(v)
c.radio_max c.get_radio_max() c.set_radio_max(v)
c.radio_min c.get_radio_min() c.set_radio_min(v)
c.radio_trim c.get_radio_trim() c.set_radio_trim(v);
c.min_max_configured() // return true if min and max are configured
Because data members of RC_Channels are now private and so cannot be written directly
some overloads are provided in the Plane classes to provide the old functionality
new overload Plane::stick_mix_channel(RC_Channel *channel)
which forwards to the previously existing
void stick_mix_channel(RC_Channel *channel, int16_t &servo_out);
new overload Plane::channel_output_mixer(Rc_Channel* , RC_Channel*)const
which forwards to
(uint8_t mixing_type, int16_t & chan1, int16_t & chan2)const;
Rename functions
RC_Channel_aux::set_radio_trim(Aux_servo_function_t function)
to RC_Channel_aux::set_trim_to_radio_in_for(Aux_servo_function_t function)
RC_Channel_aux::set_servo_out(Aux_servo_function_t function, int16_t value)
to RC_Channel_aux::set_servo_out_for(Aux_servo_function_t function, int16_t value)
Rationale:
RC_Channel is a complicated class, which combines
several functionalities dealing with stick inputs
in pwm and logical units, logical and actual actuator
outputs, unit conversion etc, etc
The intent of this PR is to clarify existing use of
the class. At the basic level it should now be possible
to grep all places where private variable is set by
searching for the set_xx function.
(The wider purpose is to provide a more generic and
logically simpler method of output mixing. This is a small step)
2016-05-08 05:33:02 -03:00
|
|
|
channel_roll->set_control_in(0);
|
|
|
|
channel_pitch->set_control_in(0);
|
|
|
|
channel_rudder->set_control_in(0);
|
2019-01-29 20:14:43 -04:00
|
|
|
|
2020-11-07 10:17:59 -04:00
|
|
|
airspeed_nudge_cm = 0;
|
|
|
|
throttle_nudge = 0;
|
|
|
|
|
2019-01-15 13:46:13 -04:00
|
|
|
switch (control_mode->mode_number()) {
|
2021-09-10 03:28:21 -03:00
|
|
|
#if HAL_QUADPLANE_ENABLED
|
2019-01-15 13:46:13 -04:00
|
|
|
case Mode::Number::QSTABILIZE:
|
|
|
|
case Mode::Number::QHOVER:
|
|
|
|
case Mode::Number::QLOITER:
|
|
|
|
case Mode::Number::QLAND: // throttle is ignored, but reset anyways
|
|
|
|
case Mode::Number::QRTL: // throttle is ignored, but reset anyways
|
|
|
|
case Mode::Number::QACRO:
|
2021-09-10 03:28:21 -03:00
|
|
|
#if QAUTOTUNE_ENABLED
|
2019-01-15 13:46:13 -04:00
|
|
|
case Mode::Number::QAUTOTUNE:
|
2021-09-10 03:28:21 -03:00
|
|
|
#endif
|
2019-04-09 09:17:25 -03:00
|
|
|
if (quadplane.available() && quadplane.motors->get_desired_spool_state() > AP_Motors::DesiredSpoolState::GROUND_IDLE) {
|
2019-01-29 20:14:43 -04:00
|
|
|
// set half throttle to avoid descending at maximum rate, still has a slight descent due to throttle deadzone
|
|
|
|
channel_throttle->set_control_in(channel_throttle->get_range() / 2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
FALLTHROUGH;
|
2021-09-10 03:28:21 -03:00
|
|
|
#endif
|
2019-01-29 20:14:43 -04:00
|
|
|
default:
|
|
|
|
channel_throttle->set_control_in(0);
|
|
|
|
break;
|
|
|
|
}
|
2014-03-08 01:20:09 -04:00
|
|
|
}
|
|
|
|
|
2020-07-31 05:47:39 -03:00
|
|
|
if (ThrFailsafe(g.throttle_fs_enabled.get()) != ThrFailsafe::Enabled) {
|
2012-08-21 23:19:50 -03:00
|
|
|
return;
|
2019-08-20 13:24:01 -03:00
|
|
|
}
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2019-08-20 13:24:01 -03:00
|
|
|
if (rc_failsafe_active()) {
|
|
|
|
// we detect a failsafe from radio
|
|
|
|
// throttle has dropped below the mark
|
|
|
|
failsafe.throttle_counter++;
|
|
|
|
if (failsafe.throttle_counter == 10) {
|
2022-02-26 09:40:12 -04:00
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "Throttle failsafe %s", "on");
|
2019-08-20 13:24:01 -03:00
|
|
|
failsafe.rc_failsafe = true;
|
|
|
|
AP_Notify::flags.failsafe_radio = true;
|
|
|
|
}
|
|
|
|
if (failsafe.throttle_counter > 10) {
|
|
|
|
failsafe.throttle_counter = 10;
|
|
|
|
}
|
|
|
|
} else if(failsafe.throttle_counter > 0) {
|
|
|
|
// we are no longer in failsafe condition
|
|
|
|
// but we need to recover quickly
|
|
|
|
failsafe.throttle_counter--;
|
|
|
|
if (failsafe.throttle_counter > 3) {
|
|
|
|
failsafe.throttle_counter = 3;
|
|
|
|
}
|
|
|
|
if (failsafe.throttle_counter == 1) {
|
2022-02-26 09:40:12 -04:00
|
|
|
gcs().send_text(MAV_SEVERITY_WARNING, "Throttle failsafe %s", "off");
|
2019-08-20 13:24:01 -03:00
|
|
|
} else if(failsafe.throttle_counter == 0) {
|
|
|
|
failsafe.rc_failsafe = false;
|
|
|
|
AP_Notify::flags.failsafe_radio = false;
|
2012-08-21 23:19:50 -03:00
|
|
|
}
|
|
|
|
}
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2021-09-21 18:41:35 -03:00
|
|
|
void Plane::trim_radio()
|
2011-09-08 22:29:39 -03:00
|
|
|
{
|
2018-05-25 17:26:36 -03:00
|
|
|
if (failsafe.rc_failsafe) {
|
|
|
|
// can't trim if we don't have valid input
|
2021-09-21 18:41:35 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (plane.control_mode != &mode_manual) {
|
|
|
|
gcs().send_text(MAV_SEVERITY_ERROR, "trim failed, not in manual mode");
|
|
|
|
return;
|
2018-05-25 17:26:36 -03:00
|
|
|
}
|
|
|
|
|
2021-09-21 18:41:35 -03:00
|
|
|
if (labs(channel_roll->get_control_in()) > (channel_roll->get_range() * 0.2) ||
|
|
|
|
labs(channel_pitch->get_control_in()) > (channel_pitch->get_range() * 0.2)) {
|
|
|
|
// don't trim for extreme values - if we attempt to trim
|
|
|
|
// more than 20 percent range left then assume the
|
2013-04-11 23:47:59 -03:00
|
|
|
// sticks are not properly centered. This also prevents
|
|
|
|
// problems with starting APM with the TX off
|
2021-09-21 18:41:35 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_ERROR, "trim failed, large roll and pitch input");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (degrees(ahrs.get_gyro().length()) > 30.0) {
|
|
|
|
// rotating more than 30 deg/second
|
|
|
|
gcs().send_text(MAV_SEVERITY_ERROR, "trim failed, large movement");
|
|
|
|
return;
|
2013-04-11 23:47:59 -03:00
|
|
|
}
|
|
|
|
|
2017-07-06 01:14:00 -03:00
|
|
|
// trim main surfaces
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_aileron);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_elevator);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_rudder);
|
2017-07-01 07:05:17 -03:00
|
|
|
|
|
|
|
// trim elevons
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_elevon_left);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_elevon_right);
|
|
|
|
|
|
|
|
// trim vtail
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_vtail_left);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_vtail_right);
|
|
|
|
|
2021-09-18 15:02:12 -03:00
|
|
|
if (is_zero(SRV_Channels::get_output_scaled(SRV_Channel::k_rudder))) {
|
2017-07-01 07:05:17 -03:00
|
|
|
// trim differential spoilers if no rudder input
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_dspoilerLeft1);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_dspoilerLeft2);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_dspoilerRight1);
|
2017-08-26 07:16:00 -03:00
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_dspoilerRight2);
|
2017-07-01 07:05:17 -03:00
|
|
|
}
|
|
|
|
|
2022-01-06 21:34:34 -04:00
|
|
|
if (is_zero(SRV_Channels::get_slew_limited_output_scaled(SRV_Channel::k_flap_auto)) &&
|
|
|
|
is_zero(SRV_Channels::get_slew_limited_output_scaled(SRV_Channel::k_flap))) {
|
2017-07-01 07:05:17 -03:00
|
|
|
// trim flaperons if no flap input
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_flaperon_left);
|
|
|
|
SRV_Channels::set_trim_to_servo_out_for(SRV_Channel::k_flaperon_right);
|
2013-01-24 23:27:44 -04:00
|
|
|
}
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2017-07-01 07:05:17 -03:00
|
|
|
// now save input trims, as these have been moved to the outputs
|
|
|
|
channel_roll->set_and_save_trim();
|
|
|
|
channel_pitch->set_and_save_trim();
|
|
|
|
channel_rudder->set_and_save_trim();
|
2012-08-21 23:19:50 -03:00
|
|
|
|
2021-09-21 18:41:35 -03:00
|
|
|
gcs().send_text(MAV_SEVERITY_NOTICE, "trim complete");
|
2011-09-09 11:18:38 -03:00
|
|
|
}
|
2013-11-17 00:32:36 -04:00
|
|
|
|
2019-08-25 23:57:39 -03:00
|
|
|
/*
|
|
|
|
check if throttle value is within allowed range
|
|
|
|
*/
|
|
|
|
bool Plane::rc_throttle_value_ok(void) const
|
|
|
|
{
|
2020-07-31 05:47:39 -03:00
|
|
|
if (ThrFailsafe(g.throttle_fs_enabled.get()) == ThrFailsafe::Disabled) {
|
2019-08-25 23:57:39 -03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (channel_throttle->get_reverse()) {
|
|
|
|
return channel_throttle->get_radio_in() < g.throttle_fs_value;
|
|
|
|
}
|
|
|
|
return channel_throttle->get_radio_in() > g.throttle_fs_value;
|
|
|
|
}
|
|
|
|
|
2013-11-17 00:32:36 -04:00
|
|
|
/*
|
|
|
|
return true if throttle level is below throttle failsafe threshold
|
2014-03-08 01:20:09 -04:00
|
|
|
or RC input is invalid
|
2013-11-17 00:32:36 -04:00
|
|
|
*/
|
2018-08-20 21:38:41 -03:00
|
|
|
bool Plane::rc_failsafe_active(void) const
|
2013-11-17 00:32:36 -04:00
|
|
|
{
|
2019-08-25 23:57:39 -03:00
|
|
|
if (!rc_throttle_value_ok()) {
|
|
|
|
return true;
|
2013-11-17 00:32:36 -04:00
|
|
|
}
|
2015-05-13 19:05:32 -03:00
|
|
|
if (millis() - failsafe.last_valid_rc_ms > 1000) {
|
2014-03-08 01:20:09 -04:00
|
|
|
// we haven't had a valid RC frame for 1 seconds
|
2013-12-19 18:41:15 -04:00
|
|
|
return true;
|
|
|
|
}
|
2019-08-25 23:57:39 -03:00
|
|
|
return false;
|
2013-11-17 00:32:36 -04:00
|
|
|
}
|
2021-07-17 03:40:38 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
expo handling for MANUAL, ACRO and TRAINING modes
|
|
|
|
*/
|
|
|
|
static float channel_expo(RC_Channel *chan, int8_t expo, bool use_dz)
|
|
|
|
{
|
|
|
|
if (chan == nullptr) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
float rin = use_dz? chan->get_control_in() : chan->get_control_in_zero_dz();
|
|
|
|
return SERVO_MAX * expo_curve(constrain_float(expo*0.01, 0, 1), rin/SERVO_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
float Plane::roll_in_expo(bool use_dz) const
|
|
|
|
{
|
|
|
|
return channel_expo(channel_roll, g2.man_expo_roll, use_dz);
|
|
|
|
}
|
|
|
|
|
|
|
|
float Plane::pitch_in_expo(bool use_dz) const
|
|
|
|
{
|
2022-01-10 03:08:44 -04:00
|
|
|
return channel_expo(channel_pitch, g2.man_expo_pitch, use_dz);
|
2021-07-17 03:40:38 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
float Plane::rudder_in_expo(bool use_dz) const
|
|
|
|
{
|
2022-01-10 03:08:44 -04:00
|
|
|
return channel_expo(channel_rudder, g2.man_expo_rudder, use_dz);
|
2021-07-17 03:40:38 -03:00
|
|
|
}
|
2021-11-20 20:03:18 -04:00
|
|
|
|
|
|
|
bool Plane::throttle_at_zero(void) const
|
|
|
|
{
|
|
|
|
/* true if throttle stick is at idle position...if throttle trim has been moved
|
|
|
|
to center stick area in conjunction with sprung throttle, cannot use in_trim, must use rc_min
|
|
|
|
*/
|
|
|
|
if (((!(g2.flight_options & FlightOptions::CENTER_THROTTLE_TRIM) && channel_throttle->in_trim_dz()) ||
|
2022-03-05 01:10:22 -04:00
|
|
|
(g2.flight_options & FlightOptions::CENTER_THROTTLE_TRIM && channel_throttle->in_min_dz()))) {
|
2021-11-20 20:03:18 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|