mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-01 03:22:07 +08:00
428f170f59
* always set * add mock * little more * fix * fix old-commit-hash: afc96972c80743378ad0e091d9dca8c216b09298
6 lines
180 B
Python
6 lines
180 B
Python
from openpilot.selfdrive.car.interfaces import CarControllerBase
|
|
|
|
class CarController(CarControllerBase):
|
|
def update(self, CC, CS, now_nanos):
|
|
return CC.actuators.copy(), []
|