mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-26 17:33:44 +08:00
10 lines
195 B
Python
Executable File
10 lines
195 B
Python
Executable File
from openpilot.selfdrive.car import CarSpecs, PlatformConfig, Platforms
|
|
|
|
|
|
class CAR(Platforms):
|
|
MOCK = PlatformConfig(
|
|
[],
|
|
CarSpecs(mass=1700, wheelbase=2.7, steerRatio=13),
|
|
{}
|
|
)
|