if steeringPressed and abs(steeringAngleDeg) > 45:
This commit is contained in:
parent
fe55b02b0d
commit
6bfbd1930e
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue