Ford: add ABS address to get VIN without OBD port (#31308)

* consider ford abs

* cmts

* fix

* who

* Revert "who"

This reverts commit eef45b147f.

* this doesn't work correctly

* add cmt

* fix

* Revert "fix"

This reverts commit 60dfe09c42.
pull/31317/head
Shane Smiskol 1 year ago committed by GitHub
parent 7eb9b9a277
commit 55cc3989d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 3
      selfdrive/car/fw_query_definitions.py

@ -14,7 +14,8 @@ EcuAddrSubAddr = Tuple[int, int, Optional[int]]
LiveFwVersions = Dict[AddrType, Set[bytes]]
OfflineFwVersions = Dict[str, Dict[EcuAddrSubAddr, List[bytes]]]
STANDARD_VIN_ADDRS = [0x7e0, 0x7e2, 0x18da10f1, 0x18da0ef1] # engine, VMCU, 29-bit engine, PGM-FI
# A global list of addresses we will only ever consider for VIN responses
STANDARD_VIN_ADDRS = [0x7e0, 0x7e2, 0x760, 0x18da10f1, 0x18da0ef1] # engine, hybrid controller, Ford abs, 29-bit engine, PGM-FI
def p16(val):

Loading…
Cancel
Save