Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opendbc/car/honda/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def _get_params(ret: structs.CarParams, candidate, fingerprint, car_fw, alpha_lo
CarInterfaceBase.configure_torque_tune(candidate, ret.lateralTuning)

# These cars use alternate user brake msg (0x1BE)
if 0x1BE in fingerprint[CAN.pt] and candidate in (CAR.HONDA_ACCORD, CAR.HONDA_HRV_3G, *HONDA_BOSCH_CANFD):
if 0x1BE in fingerprint[CAN.pt] and candidate in (CAR.HONDA_ACCORD, CAR.HONDA_HRV_3G, CAR.ACURA_RDX_3G, *HONDA_BOSCH_CANFD):
Copy link
Contributor

@sshane sshane Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wonder why we have this set if we do live detection, can any car have 0x1BE and we don't want to use it? Removing would simplify things

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I agree. PR2919 does generic live detection. I had wanted to learn huggingface scripting to do a global regression test before opening gates broadly. Hadn't had a chance to try yet which is why 2919 is in draft.

ret.flags |= HondaFlags.BOSCH_ALT_BRAKE.value

if ret.flags & HondaFlags.BOSCH_ALT_BRAKE:
Expand Down