Skip to content

Commit

Permalink
Reduce Civic kP further
Browse files Browse the repository at this point in the history
  • Loading branch information
kegman committed Dec 13, 2018
1 parent f4bce62 commit 1139bb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions selfdrive/car/honda/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def get_params(candidate, fingerprint):
tire_stiffness_factor = 1.
# Civic at comma has modified steering FW, so different tuning for the Neo in that car
is_fw_modified = os.getenv("DONGLE_ID") in ['99c94dc769b5d96e']
ret.steerKpV, ret.steerKiV = [[0.264], [0.10]] if is_fw_modified else [[0.64], [0.24]]
ret.steerKpV, ret.steerKiV = [[0.264], [0.10]] if is_fw_modified else [[0.45], [0.24]]
if is_fw_modified:
ret.steerKf = 0.00003
ret.longitudinalKpBP = [0., 5., 35.]
Expand All @@ -211,7 +211,7 @@ def get_params(candidate, fingerprint):
ret.centerToFront = centerToFront_civic
ret.steerRatio = 14.63 # 10.93 is spec end-to-end
tire_stiffness_factor = 1.
ret.steerKpV, ret.steerKiV = [[0.64], [0.24]]
ret.steerKpV, ret.steerKiV = [[0.45], [0.24]]
ret.longitudinalKpBP = [0., 5., 35.]
ret.longitudinalKpV = [1.2, 0.8, 0.5]
ret.longitudinalKiBP = [0., 35.]
Expand Down

0 comments on commit 1139bb3

Please sign in to comment.