bench: hw_itl: Add debug prints for RX/TX

feature/arp
Markus Koch 2022-05-15 14:37:21 +02:00
parent 50b65bccec
commit 3c1c14f953
1 changed files with 2 additions and 1 deletions

View File

@ -50,6 +50,7 @@ class MacDevReceiver():
if len(r) < 60:
r += b'\x00' * (60 - len(r))
r += self.eth_fcs(r)
self.dut._log.debug("DUT RX: " + str(r))
await self.eth_tx.send(ETH_HEAD + r);
except:
await Timer(1, "us")
@ -64,7 +65,7 @@ class MacDevReceiver():
except:
self.dut._log.debug("NLP / Invalid frame")
continue
self.dut._log.info("RX Frame: " + str(frame))
self.dut._log.debug("DUT TX: " + str(frame))
self.macdev.send(frame)
async def start(self):