-
Notifications
You must be signed in to change notification settings - Fork 258
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
Add this for future Blindspot recognition #7
Conversation
I am not sure if a boolean is good instead of sending the distance to object but it would be interesting to talk about this.
@@ -182,6 +182,7 @@ struct CarState { | |||
altButton3 @8; | |||
} | |||
} | |||
blindspot @27 :Bool; # Is there something blocking the lane change |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think at least distinguishing between left VS right should be required.
Also, maybe anything that has to do with perception should be handled by radard. I'll think about this.
I also thought that having both is good in the beginning. But if we limit the auto Lane change based on blinker on direction. You should only have a violation in that direction. Checking both sides requires more code on Toyota and does not give more valuable data. Later it could be used for crash avoidance. But that is another topic. |
Is this being used in forks? I'd be fine with upstreaming blindspot stuff. |
We are working on it currently |
Will reopen a PR to be up to date with master. |
continuation of commaai#7
* NNFF: Cereal logging and startup alert * fill up lateralControlState
I am not sure if a boolean is good instead of sending the distance to object but it would be interesting to talk about this.