mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-19 08:03:52 +08:00
afc96972c8
* always set * add mock * little more * fix * fix
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(), []
|