mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-21 08:03:50 +08:00
3af6ec73ee
values formatting old-commit-hash: 78a46ce72499ce627c50ff95aa630602e71b8e39
11 lines
209 B
Python
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),
|
|
{}
|
|
)
|