if steeringPressed and abs(steeringAngleDeg) > 45:

This commit is contained in:
alan-polk 2024-05-22 17:13:27 -05:00
parent fe55b02b0d
commit 6bfbd1930e
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ class CarController:
steeringAngleDeg = CS.out.steeringAngleDeg
# if a human turn is active, reset steering to prevent windup
if steeringPressed and abs(steeringAngleDeg) > 60:
if steeringPressed and abs(steeringAngleDeg) > 45:
apply_curvature = 0
ramp_type = 3
else: