We need that to filter out loopback bus

old-commit-hash: 23363890cd
commatwo_master
Willem Melching 5 years ago
parent a8adc65dde
commit af5b045a3a
  1. 1
      selfdrive/boardd/tests/replay_many.py

@ -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)

Loading…
Cancel
Save