mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-22 07:44:03 -04:00
Plane: fixed chute release on low value of RC option
only release on flag high fixes #18843
This commit is contained in:
parent
a7321cbae1
commit
734edd8085
@ -329,7 +329,9 @@ case AUX_FUNC::ARSPD_CALIBRATE:
|
||||
|
||||
case AUX_FUNC::PARACHUTE_RELEASE:
|
||||
#if PARACHUTE == ENABLED
|
||||
plane.parachute_manual_release();
|
||||
if (ch_flag == AuxSwitchPos::HIGH) {
|
||||
plane.parachute_manual_release();
|
||||
}
|
||||
#endif
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user