Skip to content

Commit

Permalink
Enable CAN3 printer (commaai#1991)
Browse files Browse the repository at this point in the history
* panda has 3 can peripherals

* enable printing CAN3
  • Loading branch information
dzid26 authored Aug 27, 2024
1 parent 866bd9c commit 2b94e4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
CANPACKET_HEAD_SIZE = 0x6
DLC_TO_LEN = [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 20, 24, 32, 48, 64]
LEN_TO_DLC = {length: dlc for (dlc, length) in enumerate(DLC_TO_LEN)}
PANDA_BUS_CNT = 4
PANDA_BUS_CNT = 3


def calculate_checksum(data):
Expand Down
5 changes: 5 additions & 0 deletions tests/can_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ def can_printer():
start = sec_since_boot()
lp = sec_since_boot()
msgs = defaultdict(list)

canbus = int(os.getenv("CAN", "0"))
if canbus == 3:
canbus = 1
p.set_obd(True)

while True:
can_recv = p.can_recv()
for address, dat, src in can_recv:
Expand Down

0 comments on commit 2b94e4f

Please sign in to comment.