We need that to filter out loopback bus

pull/1412/head^2
Willem Melching 2020-04-23 12:19:46 -07:00
parent 95c2ff5a3d
commit 23363890cd
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ def send_thread(sender_serial):
while True:
tsc = messaging.recv_one(can_sock)
snd = can_capnp_to_can_list(tsc.can)
snd = list(filter(lambda x: x[-1] <= 2, snd))
try:
sender.can_send_many(snd)