Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scratch on first wheel touch #4761

Merged
merged 2 commits into from
May 18, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ControllerEngine: initialize bools for brake, softStart & spinBack st…
…ates
  • Loading branch information
ronso0 committed May 18, 2022
commit f9e9e1a5e55739122edcd1ec0f21af0bc6412aac
3 changes: 3 additions & 0 deletions src/controllers/controllerengine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ ControllerEngine::ControllerEngine(
m_dx[i] = 0.0;
m_scratchFilters[i] = new AlphaBetaFilter();
m_ramp[i] = false;
m_brakeActive[i] = false;
m_spinbackActive[i] = false;
m_softStartActive[i] = false;
}

initializeScriptEngine();
Expand Down