Skip to content

Commit

Permalink
Ram DT: check EPS firmware explicitly to set minEnableSpeed to 0 (com…
Browse files Browse the repository at this point in the history
  • Loading branch information
sunnyhaibin authored Jun 8, 2023
1 parent 462b20a commit d9c348f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions selfdrive/car/chrysler/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ def _get_params(ret, candidate, fingerprint, car_fw, experimental_long, docs):
ret.mass = 2493. + STD_CARGO_KG
ret.minSteerSpeed = 0.5
ret.minEnableSpeed = 14.5
# Certain EPS FW allow steer to zero
if any(fw.ecu == 'eps' and (fw.fwVersion[:4] <= b"6831" or fw.fwVersion[:4] <= b"6827") for fw in car_fw):
if any(fw.ecu == 'eps' and fw.fwVersion in (b"68273275AF", b"68273275AG", b"68312176AE", b"68312176AG",) for fw in car_fw):
ret.minEnableSpeed = 0.

elif candidate == CAR.RAM_HD:
Expand Down

0 comments on commit d9c348f

Please sign in to comment.