Skip to content

Commit

Permalink
Rover: fix ModeReason on fence breaches
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani authored and rmackay9 committed Jul 1, 2024
1 parent 38ca478 commit dabc34e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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
6 changes: 3 additions & 3 deletions Rover/fence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ void Rover::fence_check()
case FailsafeAction::None:
break;
case FailsafeAction::SmartRTL:
if (set_mode(mode_smartrtl, ModeReason::BATTERY_FAILSAFE)) {
if (set_mode(mode_smartrtl, ModeReason::FENCE_BREACHED)) {
break;
}
FALLTHROUGH;
case FailsafeAction::RTL:
if (set_mode(mode_rtl, ModeReason::BATTERY_FAILSAFE)) {
if (set_mode(mode_rtl, ModeReason::FENCE_BREACHED)) {
break;
}
FALLTHROUGH;
case FailsafeAction::Hold:
set_mode(mode_hold, ModeReason::BATTERY_FAILSAFE);
set_mode(mode_hold, ModeReason::FENCE_BREACHED);
break;
case FailsafeAction::SmartRTL_Hold:
if (!set_mode(mode_smartrtl, ModeReason::FENCE_BREACHED)) {
Expand Down

0 comments on commit dabc34e

Please sign in to comment.