mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-21 14:02:05 +08:00
78a46ce724
values formatting
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),
|
|
{}
|
|
)
|