values.py 209 B

12345678910
  1. from openpilot.selfdrive.car import CarSpecs, PlatformConfig, Platforms
  2. class CAR(Platforms):
  3. MOCK = PlatformConfig(
  4. 'mock',
  5. None,
  6. CarSpecs(mass=1700, wheelbase=2.7, steerRatio=13),
  7. {}
  8. )