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
在 c3_test 的 controlsd.py 裡,STOCK OP 的 CC.latActive 是用satndstill判斷是否可啟用(586行),該值有依照最低橫向啟動的速度做了限制(585行),接下來小P大的FLKA啟動橫向條件裡(666行-669行),CC.availableVagFlka 的TRUE條件卻是用CS.standstill(679行),這樣會導致 CC.latActive 也會在車速低於最低橫向啟動速度時啟動,就會導致橫向控制失效,因此679行應該改為and not standstill)),此修改有測試過已無在極低速度下橫向會失效的問題,以上請參考。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在 c3_test 的 controlsd.py 裡,STOCK OP 的 CC.latActive 是用satndstill判斷是否可啟用(586行),該值有依照最低橫向啟動的速度做了限制(585行),接下來小P大的FLKA啟動橫向條件裡(666行-669行),CC.availableVagFlka 的TRUE條件卻是用CS.standstill(679行),這樣會導致 CC.latActive 也會在車速低於最低橫向啟動速度時啟動,就會導致橫向控制失效,因此679行應該改為and not standstill)),此修改有測試過已無在極低速度下橫向會失效的問題,以上請參考。
The text was updated successfully, but these errors were encountered: