panda/tests/can_printer.py

42 lines
1.0 KiB
Python
Raw Permalink Normal View History

2019-09-25 08:50:53 +08:00
#!/usr/bin/env python3
2017-05-28 03:31:29 +08:00
import os
import time
from collections import defaultdict
2018-03-05 03:52:53 +08:00
import binascii
2023-08-07 05:59:22 +08:00
from panda import Panda
2017-05-28 03:31:29 +08:00
# fake
def sec_since_boot():
return time.time()
def can_printer():
p = Panda()
print(f"Connected to id: {p.get_serial()[0]}: {p.get_version()}")
time.sleep(1)
p.can_clear(0xFFFF)
p.set_safety_mode(Panda.SAFETY_ALLOUTPUT)
2017-05-28 03:31:29 +08:00
start = sec_since_boot()
lp = sec_since_boot()
msgs = defaultdict(list)
canbus = os.getenv("CAN")
while True:
2017-05-28 03:31:29 +08:00
can_recv = p.can_recv()
for address, dat, src in can_recv:
if canbus is None or str(src) == canbus:
msgs[address].append((dat, src))
2017-05-28 03:31:29 +08:00
if sec_since_boot() - lp > 0.1:
dd = chr(27) + "[2J"
dd += "%5.2f\n" % (sec_since_boot() - start)
for k, v in sorted(msgs.items()):
last_msg, last_src = v[-1]
dd += "%d: %s(%6d): %s\n" % (last_src, "%04X(%4d)" % (k, k), len(v), binascii.hexlify(last_msg).decode())
print(dd)
2017-05-28 03:31:29 +08:00
lp = sec_since_boot()
if __name__ == "__main__":
can_printer()