mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-24 06:12:03 +08:00
25ccb2426c
* no carinfo map * smaller diff * not on mock
15 lines
213 B
Python
15 lines
213 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),
|
|
{}
|
|
)
|
|
|
|
|
|
|