Files
StarPilot/selfdrive/car/mock/values.py
T
Shane Smiskol 60f0948fba docs: don't support multi-type car info (#31875)
don't support multi-type car info
old-commit-hash: bdae188c6f48bc1572f6ca0cc61c4735d11d02fb
2024-03-15 00:11:41 -07: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),
{}
)