MIN_LATERAL_CONTROL_SPEED = 0.0 # m/s

This commit is contained in:
机械小鸽 2025-03-26 08:34:50 +08:00 committed by GitHub
parent 924ee12ab0
commit 620634167a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 5 deletions

View File

@ -1,9 +1,8 @@
Version 0.9.7 (2024-XX-XX)
========================
* New driving model
* Adjust driving personality with the follow distance button
* Support for hybrid variants of supported Ford models
* 汉化UI
mazda 优化
机械小鸽 修改
Version 0.9.6 (2024-02-27)
========================
* New driving model

View File

@ -3,7 +3,7 @@ from abc import abstractmethod, ABC
from openpilot.common.numpy_fast import clip
from openpilot.common.realtime import DT_CTRL
MIN_LATERAL_CONTROL_SPEED = 0.3 # m/s
MIN_LATERAL_CONTROL_SPEED = 0.0 # m/s
class LatControl(ABC):