Skip to content

Commit 1ca5e1c

Browse files
authored
Fix steering oscillations in 2019 RDX (commaai#22677)
Steering wheel would oscillate quickly when going straight, oscillation is gone after this modification.
1 parent 3e5a273 commit 1ca5e1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

selfdrive/car/honda/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=[]): # py
227227
ret.centerToFront = ret.wheelbase * 0.41
228228
ret.steerRatio = 11.95 # as spec
229229
ret.lateralParams.torqueBP, ret.lateralParams.torqueV = [[0, 3840], [0, 3840]]
230-
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.6], [0.18]]
230+
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.2], [0.06]]
231231
tire_stiffness_factor = 0.677
232232

233233
elif candidate == CAR.ODYSSEY:

0 commit comments

Comments
 (0)