mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-21 09:12:25 +08:00
Ram 1500: fix temp steering fault from incorrect steer speed (#30280)
starts with 68 old-commit-hash: 3707bbadef13997a15500f8c77fad9e625fd3e6f
This commit is contained in:
@@ -64,7 +64,7 @@ class CarInterface(CarInterfaceBase):
|
||||
ret.mass = 2493.
|
||||
ret.minSteerSpeed = 14.5
|
||||
# Older EPS FW allow steer to zero
|
||||
if any(fw.ecu == 'eps' and fw.fwVersion[:4] <= b"6831" for fw in car_fw):
|
||||
if any(fw.ecu == 'eps' and b"68" < fw.fwVersion[:4] <= b"6831" for fw in car_fw):
|
||||
ret.minSteerSpeed = 0.
|
||||
|
||||
elif candidate == CAR.RAM_HD:
|
||||
|
||||
@@ -272,6 +272,7 @@ FW_VERSIONS = {
|
||||
],
|
||||
(Ecu.eps, 0x75A, None): [
|
||||
b'21590101AA',
|
||||
b'21590101AB',
|
||||
b'68273275AF',
|
||||
b'68273275AG',
|
||||
b'68273275AH',
|
||||
|
||||
Reference in New Issue
Block a user