-
Notifications
You must be signed in to change notification settings - Fork 54
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
Prevent "Brake!" message on OP long disengage #75
Comments
Very plausible, nice find! Will try it tomorrow. |
After driving around for several days, I think it's safe to say the Brake beep can be fixed by changing the line
"ACC_Status_Anzeige": 2 if acc_status == 5 else acc_status,
A few things I found out during testing: By sending 5 to ["ACC_02"]["ACC_Status_Anzeige"], the ["ACC_04"]["ACC_Texte_braking_guard"] message was also somehow triggered. However, filtering this message seemingly had no effect because it was invisible (the Brake message seems to have a higher priority). During testing I cycled through all ["ACC_04"]["ACC_Texte_braking_guard"] messages to see if it includes the Brake beep. Here's what it can actually display: I've seen stock ACC displaying the Brake message in rare cases. It seems to be triggered when the calculated negative acceleration exceeds the lower ACC limit. It's a take over request from ACC which can occur much earlier than a FCW to give the driver additional time to intervene. On OP-long it should be safe to just set this to 2 if tsk_status is 5 because tsk_status 5 is not an error:
|
Hey @Hendrik212, wanted to let you know I tried this on our 2020 Tiguan and it worked great. I did end up setting it to |
* don't initialize lane change if road edge detected * add event * use frog's method * sync name * unused * Only block during preLaneChange * change it up
A subset of vehicles with MQB long throw a "Brake!" message and loud beep when disengaging via either gas or brake. As an example, my 2020 Tiguan does this, but my 2018 Golf R doesn't. I'm not yet sure how to fix this correctly. There's a complex interaction between the radar and the instrument cluster, and we're not yet simulating it correctly.
Involved messages/signals for later reference:
The text was updated successfully, but these errors were encountered: