Skip to content

Commit 1920f83

Browse files
authored
library/util_axis_fifo_asym: fix internal fifo (#1907)
The internal i_fifo is relying on the default value for the REMOVE_NULL_BEAT_EN, which is disabled. Signals full, empty, almost full, almost empty will only work when this parameter is disabled. Otherwise, it would be necessary to define a new policy to define how that is presented to the user. This commit forces REMOVE_NULL_BEAT_EN to be disabled in its i_fifo instance. Signed-off-by: Carlos Souza <carlos.souza@analog.com>
1 parent a13d49c commit 1920f83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/util_axis_fifo_asym/util_axis_fifo_asym.v

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,8 @@ module util_axis_fifo_asym #(
117117
.ALMOST_EMPTY_THRESHOLD (A_ALMOST_EMPTY_THRESHOLD),
118118
.ALMOST_FULL_THRESHOLD (A_ALMOST_FULL_THRESHOLD),
119119
.TKEEP_EN (TKEEP_EN),
120-
.TLAST_EN (TLAST_EN)
120+
.TLAST_EN (TLAST_EN),
121+
.REMOVE_NULL_BEAT_EN(0)
121122
) i_fifo (
122123
.m_axis_aclk (m_axis_aclk),
123124
.m_axis_aresetn (m_axis_aresetn),

0 commit comments

Comments
 (0)