Skip to content

Commit

Permalink
Rover: fix failsafe reason reported
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr committed Jul 1, 2024
1 parent 38ca478 commit fb82696
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Rover/failsafe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,17 @@ void Rover::failsafe_trigger(uint8_t failsafe_type, const char* type_str, bool o
case FailsafeAction::None:
break;
case FailsafeAction::SmartRTL:
if (set_mode(mode_smartrtl, ModeReason::BATTERY_FAILSAFE)) {
if (set_mode(mode_smartrtl, ModeReason::FAILSAFE)) {
break;
}
FALLTHROUGH;
case FailsafeAction::RTL:
if (set_mode(mode_rtl, ModeReason::BATTERY_FAILSAFE)) {
if (set_mode(mode_rtl, ModeReason::FAILSAFE)) {
break;
}
FALLTHROUGH;
case FailsafeAction::Hold:
set_mode(mode_hold, ModeReason::BATTERY_FAILSAFE);
set_mode(mode_hold, ModeReason::FAILSAFE);
break;
case FailsafeAction::SmartRTL_Hold:
if (!set_mode(mode_smartrtl, ModeReason::FAILSAFE)) {
Expand Down

0 comments on commit fb82696

Please sign in to comment.