Skip to content

Commit 01c1a42

Browse files
authored
Tesla: setSpeed is vEgo while disabled (#1923)
set set speed to vEgo while inactive
1 parent e7d08ac commit 01c1a42

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

opendbc/car/tesla/carcontroller.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ def update(self, CC, CS, now_nanos):
3939
state = 13 if cruise_cancel else 4 # 4=ACC_ON, 13=ACC_CANCEL_GENERIC_SILENT
4040
accel = float(np.clip(actuators.accel, CarControllerParams.ACCEL_MIN, CarControllerParams.ACCEL_MAX))
4141
cntr = (self.frame // 4) % 8
42-
can_sends.append(self.tesla_can.create_longitudinal_command(state, accel, cntr, CC.longActive))
42+
can_sends.append(self.tesla_can.create_longitudinal_command(state, accel, cntr, CS.out.vEgo, CC.longActive))
4343

4444
else:
4545
# Increment counter so cancel is prioritized even without openpilot longitudinal
4646
if cruise_cancel:
4747
cntr = (CS.das_control["DAS_controlCounter"] + 1) % 8
48-
can_sends.append(self.tesla_can.create_longitudinal_command(13, 0, cntr, False))
48+
can_sends.append(self.tesla_can.create_longitudinal_command(13, 0, cntr, CS.out.vEgo, False))
4949

5050
# TODO: HUD control
5151
new_actuators = actuators.as_builder()

opendbc/car/tesla/teslacan.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
from opendbc.car.common.conversions import Conversions as CV
12
from opendbc.car.interfaces import V_CRUISE_MAX
23
from opendbc.car.tesla.values import CANBUS, CarControllerParams
34

@@ -24,10 +25,14 @@ def create_steering_control(self, angle, enabled, counter):
2425
values["DAS_steeringControlChecksum"] = self.checksum(0x488, data[:3])
2526
return self.packer.make_can_msg("DAS_steeringControl", CANBUS.party, values)
2627

27-
def create_longitudinal_command(self, acc_state, accel, cntr, active):
28-
values = {
28+
def create_longitudinal_command(self, acc_state, accel, cntr, v_ego, active):
29+
set_speed = v_ego * CV.MS_TO_KPH
30+
if active:
2931
# TODO: this causes jerking after gas override when above set speed
30-
"DAS_setSpeed": 0 if (accel < 0 or not active) else V_CRUISE_MAX,
32+
set_speed = 0 if accel < 0 else V_CRUISE_MAX
33+
34+
values = {
35+
"DAS_setSpeed": set_speed,
3136
"DAS_accState": acc_state,
3237
"DAS_aebEvent": 0,
3338
"DAS_jerkMin": CarControllerParams.JERK_LIMIT_MIN,

0 commit comments

Comments
 (0)