Skip to content

Commit

Permalink
[FIX] Transition fix in initialization to nominal
Browse files Browse the repository at this point in the history
  • Loading branch information
mascheiber committed Dec 7, 2022
1 parent d957c0f commit 8919476
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/state_machine/states/initialization.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ void Initialization::onEntry(Autonomy& autonomy)
{
autonomy.stateTransition("failure");
}
else
{
// Transition to nominal
autonomy.stateTransition("nominal");
}
}
else
{
Expand Down

0 comments on commit 8919476

Please sign in to comment.