Allow configurable maximum angle for AngleSteeringSafetyTest #2231
+4
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The Subaru LKAS_ANGLE message is limited to a signed, 17-bit integer, which is more than enough for it's maximum steering of around 485 degrees (at least for my Ascent). However, the
test_angle_cmd_when_enabled()
defaults to twice the maximum steering angle, which will overflow this value and result in erroneously failed tests.I have added a class variable, and logic that will default the test angle to twice the max angle value when it is not specifically configured. This keeps current behavior for existing tests, but will allow me to constraint he maximum test angle to the limits of my CAN bus messages. It's quite possible that other vehicles will be affected as more angle-based steering systems are supported, too.