From cccb40e4b50ba97eea872461892fdeeac40648fa Mon Sep 17 00:00:00 2001 From: Ross Thompson Date: Mon, 17 Jun 2024 09:16:24 -0700 Subject: [PATCH] Got the tracer not overrunning ethernet buffers so frames are not being dropped. --- src/rvvi/packetizer.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rvvi/packetizer.sv b/src/rvvi/packetizer.sv index f2c80d928..85e56beb1 100644 --- a/src/rvvi/packetizer.sv +++ b/src/rvvi/packetizer.sv @@ -100,7 +100,7 @@ module packetizer import cvw::*; #(parameter cvw_t P, // at 20MHz 250 ms is 250e-3 / (1/20e6) = 5,000,000. counter #(32) rstcounter(m_axi_aclk, RstCountRst, RstCountEn, RstCount); assign CountFlag = RstCount == 32'd100000000; - assign DelayFlag = RstCount == 32'd48; + assign DelayFlag = RstCount == 32'd200; flopenr #(187+(3*P.XLEN) + MAX_CSRS*(P.XLEN+12)) rvvireg(m_axi_aclk, ~m_axi_aresetn, valid, rvvi, rvviDelay);