Revert "failsafe: prevent Hold when no action is taken (#26383)"

This reverts commit 40dc011d82f5b79c11718992200e60c8534929ca.

Not needed anymore
This commit is contained in:
Beat Küng 2026-02-06 08:15:59 +01:00 committed by Nick
parent 3eb0255922
commit 446895fdc0

View File

@ -422,7 +422,6 @@ FailsafeBase::ActionOptions Failsafe::fromRemainingFlightTimeLowActParam(int par
switch (command_after_remaining_flight_time_low(param_value)) {
case command_after_remaining_flight_time_low::None:
options.action = Action::None;
options.allow_user_takeover = UserTakeoverAllowed::Never; // Execute immediately without delay
break;
case command_after_remaining_flight_time_low::Warning:
@ -436,7 +435,6 @@ FailsafeBase::ActionOptions Failsafe::fromRemainingFlightTimeLowActParam(int par
default:
options.action = Action::None;
options.allow_user_takeover = UserTakeoverAllowed::Never;
break;
}