mirror of
https://github.com/infiniteCable2/opendbc.git
synced 2026-02-18 13:03:52 +08:00
* Fingerprint Tesla Model 3 Performance HW4 Added Tesla Model 3 Performance HW4 (Highland) Fingerprint * Tesla Model 3 Performance Fingerprint Added Fingerprint via fingerprints_ext * Apply suggestions from code review * not hyundai * wrong dir --------- Co-authored-by: flberger1987 <fb@i-solutions.gmbh>
13 lines
238 B
Python
13 lines
238 B
Python
from opendbc.car.structs import CarParams
|
|
from opendbc.car.tesla.values import CAR
|
|
|
|
Ecu = CarParams.Ecu
|
|
|
|
FW_VERSIONS_EXT = {
|
|
CAR.TESLA_MODEL_3: {
|
|
(Ecu.eps, 0x730, None): [
|
|
b'TeMYG4_Main_0.0.0 (67),E4HP015.02.1',
|
|
],
|
|
},
|
|
}
|