Skip to content

Commit ce6d57b

Browse files
Disable length underrun error detection when triggerring RX FIFO overflow
Internal-tag: [#96770]
1 parent b22566c commit ce6d57b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

verification/cocotb/top/lib_i3c_top/test_recovery.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7655,8 +7655,8 @@ async def set_err_ctrl(val):
76557655
int2dword(0xFFFFFFFF), 4
76567656
)
76577657

7658-
# Enable RX FIFO overflow detection
7659-
await set_err_ctrl(baseline_ctrl | (1 << 11))
7658+
# Enable RX FIFO overflow detection and disable length underrun error detection
7659+
await set_err_ctrl((baseline_ctrl | (1 << 11)) & ~(1 << 8))
76607660

76617661
await recovery.command_write(
76627662
VIRT_DYNAMIC_ADDR,

0 commit comments

Comments
 (0)