Skip to content

Commit

Permalink
increase rate limit for standstill only
Browse files Browse the repository at this point in the history
  • Loading branch information
dkiiv committed Jul 26, 2024
1 parent f3fb156 commit 4892451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/car/volkswagen/values.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class CarControllerParams:
ACCEL_MAX_PLUS = 4.0 # 4.0 m/s max acceleration
ACCEL_MIN = -3.5 # 3.5 m/s max deceleration

ANGLE_RATE_LIMIT_UP = AngleRateLimit(speed_bp=[0., 15.], angle_v=[10., 10.])
ANGLE_RATE_LIMIT_DOWN = AngleRateLimit(speed_bp=[0., 15.], angle_v=[10., 10.])
ANGLE_RATE_LIMIT_UP = AngleRateLimit(speed_bp=[0., 1., 15.], angle_v=[100., 10, 10.])
ANGLE_RATE_LIMIT_DOWN = AngleRateLimit(speed_bp=[0., 1., 15.], angle_v=[100., 10, 10.])

def __init__(self, CP):
can_define = CANDefine(DBC[CP.carFingerprint]["pt"])
Expand Down

0 comments on commit 4892451

Please sign in to comment.