eth: Invert TX completion output control

Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
Alex Forencich
2025-02-07 23:24:28 -08:00
parent 1c381ce22e
commit 96e348ac84
8 changed files with 13 additions and 13 deletions

View File

@@ -79,7 +79,7 @@ async def run_test(dut, payload_lengths=None, payload_data=None, ifg=12):
test_frames = [payload_data(x) for x in payload_lengths()]
for test_data in test_frames:
await tb.source.send(AxiStreamFrame(test_data, tid=0, tuser=2))
await tb.source.send(AxiStreamFrame(test_data, tid=0, tuser=0))
for test_data in test_frames:
rx_frame = await tb.sink.recv()
@@ -130,7 +130,7 @@ async def run_test_alignment(dut, payload_data=None, ifg=12):
start_lane = []
for test_data in test_frames:
await tb.source.send(AxiStreamFrame(test_data, tid=0, tuser=2))
await tb.source.send(AxiStreamFrame(test_data, tid=0, tuser=0))
for test_data in test_frames:
rx_frame = await tb.sink.recv()