You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
478 B
29 lines
478 B
1 year ago
|
# ruff: noqa: E501
|
||
3 months ago
|
from opendbc.car.structs import CarParams
|
||
|
from opendbc.car.body.values import CAR
|
||
1 year ago
|
|
||
3 months ago
|
Ecu = CarParams.Ecu
|
||
1 year ago
|
|
||
|
# debug ecu fw version is the git hash of the firmware
|
||
|
|
||
|
|
||
|
FINGERPRINTS = {
|
||
1 year ago
|
CAR.COMMA_BODY: [{
|
||
1 year ago
|
513: 8, 516: 8, 514: 3, 515: 4
|
||
|
}],
|
||
|
}
|
||
|
|
||
|
FW_VERSIONS = {
|
||
1 year ago
|
CAR.COMMA_BODY: {
|
||
1 year ago
|
(Ecu.engine, 0x720, None): [
|
||
|
b'0.0.01',
|
||
|
b'0.3.00a',
|
||
|
b'02/27/2022',
|
||
|
],
|
||
|
(Ecu.debug, 0x721, None): [
|
||
|
b'166bd860',
|
||
|
b'dc780f85',
|
||
|
],
|
||
|
},
|
||
|
}
|