mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 18:53:55 +08:00
5 lines
150 B
Python
5 lines
150 B
Python
# functions common among cars
|
|
|
|
def dbc_dict(pt_dbc, radar_dbc, chassis_dbc=None):
|
|
return {'pt': pt_dbc, 'radar': radar_dbc, 'chassis': chassis_dbc}
|