You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.9 KiB
76 lines
2.9 KiB
#!/usr/bin/env python3
|
|
from cereal import car
|
|
from selfdrive.car.subaru.values import CAR
|
|
from selfdrive.car import STD_CARGO_KG, scale_rot_inertia, scale_tire_stiffness, gen_empty_fingerprint
|
|
from selfdrive.car.interfaces import CarInterfaceBase
|
|
|
|
class CarInterface(CarInterfaceBase):
|
|
|
|
@staticmethod
|
|
def compute_gb(accel, speed):
|
|
return float(accel) / 4.0
|
|
|
|
@staticmethod
|
|
def get_params(candidate, fingerprint=gen_empty_fingerprint(), has_relay=False, car_fw=[]): # pylint: disable=dangerous-default-value
|
|
ret = CarInterfaceBase.get_std_params(candidate, fingerprint, has_relay)
|
|
|
|
ret.carName = "subaru"
|
|
ret.radarOffCan = True
|
|
ret.safetyModel = car.CarParams.SafetyModel.subaru
|
|
|
|
# Subaru port is a community feature, since we don't own one to test
|
|
ret.communityFeature = True
|
|
|
|
# force openpilot to fake the stock camera, since car harness is not supported yet and old style giraffe (with switches)
|
|
# was never released
|
|
ret.enableCamera = True
|
|
|
|
ret.steerRateCost = 0.7
|
|
ret.steerLimitTimer = 0.4
|
|
|
|
if candidate in [CAR.IMPREZA]:
|
|
ret.mass = 1568. + STD_CARGO_KG
|
|
ret.wheelbase = 2.67
|
|
ret.centerToFront = ret.wheelbase * 0.5
|
|
ret.steerRatio = 15
|
|
ret.steerActuatorDelay = 0.4 # end-to-end angle controller
|
|
ret.lateralTuning.pid.kf = 0.00005
|
|
ret.lateralTuning.pid.kiBP, ret.lateralTuning.pid.kpBP = [[0., 20.], [0., 20.]]
|
|
ret.lateralTuning.pid.kpV, ret.lateralTuning.pid.kiV = [[0.2, 0.3], [0.02, 0.03]]
|
|
|
|
# TODO: get actual value, for now starting with reasonable value for
|
|
# civic and scaling by mass and wheelbase
|
|
ret.rotationalInertia = scale_rot_inertia(ret.mass, ret.wheelbase)
|
|
|
|
# TODO: start from empirically derived lateral slip stiffness for the civic and scale by
|
|
# mass and CG position, so all cars will have approximately similar dyn behaviors
|
|
ret.tireStiffnessFront, ret.tireStiffnessRear = scale_tire_stiffness(ret.mass, ret.wheelbase, ret.centerToFront)
|
|
|
|
return ret
|
|
|
|
# returns a car.CarState
|
|
def update(self, c, can_strings):
|
|
self.cp.update_strings(can_strings)
|
|
self.cp_cam.update_strings(can_strings)
|
|
|
|
ret = self.CS.update(self.cp, self.cp_cam)
|
|
|
|
ret.canValid = self.cp.can_valid and self.cp_cam.can_valid
|
|
ret.steeringRateLimited = self.CC.steer_rate_limited if self.CC is not None else False
|
|
|
|
buttonEvents = []
|
|
be = car.CarState.ButtonEvent.new_message()
|
|
be.type = car.CarState.ButtonEvent.Type.accelCruise
|
|
buttonEvents.append(be)
|
|
|
|
ret.events = self.create_common_events(ret).to_msg()
|
|
|
|
self.CS.out = ret.as_reader()
|
|
return self.CS.out
|
|
|
|
def apply(self, c):
|
|
can_sends = self.CC.update(c.enabled, self.CS, self.frame, c.actuators,
|
|
c.cruiseControl.cancel, c.hudControl.visualAlert,
|
|
c.hudControl.leftLaneVisible, c.hudControl.rightLaneVisible)
|
|
self.frame += 1
|
|
return can_sends
|
|
|