Honda: fix possible controls mismatch on Nidecs (#23973)

* Honda: fix possible controls mismatch on Nidecs

* bump panda
pull/23975/head
Adeeb Shihadeh 2022-03-15 17:55:15 -07:00 committed by GitHub
parent dfc1292614
commit 7deba690e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 3 deletions

2
panda

@ -1 +1 @@
Subproject commit 5a7af82f06bf5f8039df8f58f9b1114f7d3436ee
Subproject commit e6722c7f99b8f7b9f81bb0216edb88cc2e5ad7c0

View File

@ -50,6 +50,9 @@ class TestCarModel(unittest.TestCase):
@classmethod
def setUpClass(cls):
#if cls.car_model != "HONDA RIDGELINE 2017":
# raise unittest.SkipTest
if cls.route is None:
if cls.car_model in non_tested_cars:
print(f"Skipping tests for {cls.car_model}: missing route")
@ -59,7 +62,12 @@ class TestCarModel(unittest.TestCase):
params = Params()
params.clear_all()
for seg in [2, 1, 0]:
for seg in (2, 1, 0):
#from tools.lib.route import Route
#from tools.lib.logreader import MultiLogIterator
#r = Route("97bbe58ea225ad1d|2022-03-08--12-54-42")
#lr = MultiLogIterator(r.log_paths()[3:4])
try:
lr = LogReader(get_url(cls.route, seg))
except Exception:
@ -189,6 +197,7 @@ class TestCarModel(unittest.TestCase):
self.safety.safety_rx_hook(to_send)
self.CI.update(CC, (can_list_to_can_capnp([msg, ]), ))
CS_prev = car.CarState.new_message()
checks = defaultdict(lambda: 0)
for can in self.can_msgs:
CS = self.CI.update(CC, (can.as_builder().to_bytes(), ))
@ -217,11 +226,21 @@ class TestCarModel(unittest.TestCase):
checks['brakePressed'] += brake_pressed != self.safety.get_brake_pressed_prev()
if self.CP.pcmCruise:
checks['controlsAllowed'] += not CS.cruiseState.enabled and self.safety.get_controls_allowed()
# On most pcmCruise cars, openpilot's state is always tied to the PCM's cruise state.
# On Honda Nidec, we always engage on the rising edge of the PCM cruise state, but
# openpilot brakes to zero even if the min ACC speed is non-zero (i.e. the PCM disengages).
if self.CP.carName == "honda" and self.CP.carFingerprint not in HONDA_BOSCH:
# only the rising edges are expected to match
if CS.cruiseState.enabled and not CS_prev.cruiseState.enabled:
checks['controlsAllowed'] += not self.safety.get_controls_allowed()
else:
checks['controlsAllowed'] += not CS.cruiseState.enabled and self.safety.get_controls_allowed()
if self.CP.carName == "honda":
checks['mainOn'] += CS.cruiseState.available != self.safety.get_acc_main_on()
CS_prev = CS
# TODO: add flag to toyota safety
if self.CP.carFingerprint == TOYOTA.SIENNA and checks['brakePressed'] < 25:
checks['brakePressed'] = 0