Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Fix stop step
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Oct 23, 2023
1 parent 7ca3873 commit c46b5f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bitbots_quintic_walk/src/walk_engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ void WalkEngine::reset(WalkState state,
buildStartStepTrajectories();
} else if (state == WalkState::STOP_MOVEMENT) {
buildStopMovementTrajectories();
} else if (state == WalkState::START_STEP) {
} else if (state == WalkState::STOP_STEP) {
buildStopStepTrajectories();
} else if (state == WalkState::KICK) {
buildKickTrajectories();
Expand Down Expand Up @@ -399,7 +399,7 @@ void WalkEngine::reset(WalkState state,
buildStartStepTrajectories();
} else if (state == WalkState::STOP_MOVEMENT) {
buildStopMovementTrajectories();
} else if (state == WalkState::START_STEP) {
} else if (state == WalkState::STOP_STEP) {
buildStopStepTrajectories();
} else if (state == WalkState::KICK) {
buildKickTrajectories();
Expand Down Expand Up @@ -1114,4 +1114,4 @@ tf2::Transform WalkEngine::getLeft() {
tf2::Transform WalkEngine::getRight() {
return right_in_world_;
}
} // namespace bitbots_quintic_walk
} // namespace bitbots_quintic_walk

0 comments on commit c46b5f5

Please sign in to comment.