26 lines
839 B
Python
26 lines
839 B
Python
import math
|
|
from opendbc.car import get_safety_config, structs
|
|
from opendbc.car.interfaces import CarInterfaceBase
|
|
from opendbc.car.body.values import SPEED_FROM_RPM
|
|
|
|
|
|
class CarInterface(CarInterfaceBase):
|
|
@staticmethod
|
|
def _get_params(ret: structs.CarParams, candidate, fingerprint, car_fw, experimental_long, docs) -> structs.CarParams:
|
|
ret.notCar = True
|
|
ret.brand = "body"
|
|
ret.safetyConfigs = [get_safety_config(structs.CarParams.SafetyModel.body)]
|
|
|
|
ret.minSteerSpeed = -math.inf
|
|
ret.maxLateralAccel = math.inf # TODO: set to a reasonable value
|
|
ret.steerLimitTimer = 1.0
|
|
ret.steerActuatorDelay = 0.
|
|
|
|
ret.wheelSpeedFactor = SPEED_FROM_RPM
|
|
|
|
ret.radarUnavailable = True
|
|
ret.openpilotLongitudinalControl = True
|
|
ret.steerControlType = structs.CarParams.SteerControlType.angle
|
|
|
|
return ret
|