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.
Validation
TODO: Add route(s)
TODO: Consider adding new event / car state for autoparking
Fixed Autopark failing in Tesla vehicles
Note that Autopark is not normally accessible with openpilot is enabled because it requires TACC to be set instead of Autopilot/FSD which disables autopark for some reason in the car - so for testing purposes in the routes
invalidLkasSettingwas forcibly disabled but this change is not included in this PR as that is a separate change and comes with some interesting implications so keeping them separate. That will come in a future PR.Previously in the code we had
autoparkdefined from theDI_autoparkStatemessage, which as it turned out after extensive testing, is actually not used by autopark at all but instead summon / smart summon - so I have renamed related variables to reflect this. I also clarified in a comment that it only works when the car was off-road when starting summon, which is the current behaviour in master not new in my branch - and added a TODO to fix this later.We use the new
ACTIVE_AUTOPARKstate in theDAS_autopilotStatemessage to determine whether or not autopark is active, and, like summon, we block messages and enable pass-through when it is. We also ensure thatcruiseState.enabled = falsein the car state also matches this new behaviour.