Fix Honda Accord transmission type detection (#21247)

pull/21244/head^2
Adeeb Shihadeh 4 years ago committed by GitHub
parent 656719edfd
commit af8d417627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      selfdrive/car/honda/interface.py

@ -135,7 +135,7 @@ class CarInterface(CarInterfaceBase):
ret.enableBsm = 0x12f8bfa7 in fingerprint[0]
# Accord 1.5T CVT has different gearbox message
if candidate == CAR.ACCORD and 0x191 in fingerprint[0]:
if candidate == CAR.ACCORD and 0x191 in fingerprint[1]:
ret.transmissionType = TransmissionType.cvt
cloudlog.warning("ECU Camera Simulated: %r", ret.enableCamera)

Loading…
Cancel
Save