mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-30 02:52:04 +08:00
597535c014
* linter: don't allow implicitly concatenated strings * fix hyundai old-commit-hash: 2c94f155840b49639b8bf1ec996d99e268fa9a52
13 lines
302 B
Python
13 lines
302 B
Python
from selfdrive.car import dbc_dict
|
|
from cereal import car
|
|
Ecu = car.CarParams.Ecu
|
|
|
|
MAX_ANGLE = 87. # make sure we never command the extremes (0xfff) which cause latching fault
|
|
|
|
class CAR:
|
|
FUSION = "FORD FUSION 2018"
|
|
|
|
DBC = {
|
|
CAR.FUSION: dbc_dict('ford_fusion_2018_pt', 'ford_fusion_2018_adas'),
|
|
}
|