car: CarController and CarState are always present (#31925)
* always set * add mock * little more * fix * fixpull/31929/head
parent
3a7582d9a6
commit
afc96972c8
4 changed files with 28 additions and 27 deletions
@ -0,0 +1,5 @@ |
||||
from openpilot.selfdrive.car.interfaces import CarControllerBase |
||||
|
||||
class CarController(CarControllerBase): |
||||
def update(self, CC, CS, now_nanos): |
||||
return CC.actuators.copy(), [] |
@ -0,0 +1,4 @@ |
||||
from openpilot.selfdrive.car.interfaces import CarStateBase |
||||
|
||||
class CarState(CarStateBase): |
||||
pass |
Loading…
Reference in new issue