Files
clearpilot/selfdrive/car/mock/values.py
Your Name 931db76fc6 wip
2024-04-27 13:48:05 -05:00

11 lines
207 B
Python

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