We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
for motors flipped value is either true or false, for encoders flipped value is either 1 or -1
this should be consistent, I suggest using true/false for both.
The text was updated successfully, but these errors were encountered:
can you also point to the code or file to be fixed?
Sorry, something went wrong.
in generated config.hpp under firmware/include/config/config.hpp properties look as follows:
const float encoderFlipped[] = { -1, -1, 1, -1, -1, 1 };
const bool motorFlipped[] = { true, true, false, true, true, false };
so files to modify would be utils/scripts/generateHardwareConfig.js and firmware files that access the flipped properties
No branches or pull requests
for motors flipped value is either true or false,
for encoders flipped value is either 1 or -1
this should be consistent, I suggest using true/false for both.
The text was updated successfully, but these errors were encountered: