mirror of https://github.com/commaai/panda.git
36 lines
834 B
Python
Executable File
36 lines
834 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
import struct
|
|
import time
|
|
from collections import defaultdict
|
|
from panda.lib.panda import Panda
|
|
|
|
# fake
|
|
def sec_since_boot():
|
|
return time.time()
|
|
|
|
def can_printer():
|
|
p = Panda()
|
|
|
|
start = sec_since_boot()
|
|
lp = sec_since_boot()
|
|
msgs = defaultdict(list)
|
|
canbus = int(os.getenv("CAN", 0))
|
|
while 1:
|
|
can_recv = p.can_recv()
|
|
for address, _, dat, src in can_recv:
|
|
if src == canbus:
|
|
msgs[address].append(dat)
|
|
|
|
if sec_since_boot() - lp > 0.1:
|
|
dd = chr(27) + "[2J"
|
|
dd += "%5.2f\n" % (sec_since_boot() - start)
|
|
for k,v in sorted(zip(msgs.keys(), map(lambda x: x[-1].encode("hex"), msgs.values()))):
|
|
dd += "%s(%6d) %s\n" % ("%04X(%4d)" % (k,k),len(msgs[k]), v)
|
|
print dd
|
|
lp = sec_since_boot()
|
|
|
|
if __name__ == "__main__":
|
|
can_printer()
|
|
|