mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 17:38:32 -04:00
Plane: Support new RC_Channels::read_input()
This commit is contained in:
parent
30554d0de0
commit
2deac7238c
@ -171,7 +171,7 @@ void Plane::rudder_arm_disarm_check()
|
|||||||
|
|
||||||
void Plane::read_radio()
|
void Plane::read_radio()
|
||||||
{
|
{
|
||||||
if (!RC_Channels::has_new_input()) {
|
if (!RC_Channels::read_input()) {
|
||||||
control_failsafe();
|
control_failsafe();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -183,8 +183,6 @@ void Plane::read_radio()
|
|||||||
|
|
||||||
failsafe.last_valid_rc_ms = millis();
|
failsafe.last_valid_rc_ms = millis();
|
||||||
|
|
||||||
RC_Channels::set_pwm_all();
|
|
||||||
|
|
||||||
if (control_mode == TRAINING) {
|
if (control_mode == TRAINING) {
|
||||||
// in training mode we don't want to use a deadzone, as we
|
// in training mode we don't want to use a deadzone, as we
|
||||||
// want manual pass through when not exceeding attitude limits
|
// want manual pass through when not exceeding attitude limits
|
||||||
|
Loading…
Reference in New Issue
Block a user