Files
dragonpilot/selfdrive/car/mock/values.py
T
Shane Smiskol 78a46ce724 car values formatting (#31747)
values formatting
2024-03-06 15:47:44 -08:00

11 lines
209 B
Python

from openpilot.selfdrive.car import CarSpecs, PlatformConfig, Platforms
class CAR(Platforms):
MOCK = PlatformConfig(
'mock',
None,
CarSpecs(mass=1700, wheelbase=2.7, steerRatio=13),
{}
)