mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
i2s: Fix the incorrect TX fifo almost empty offset
This commit is contained in:
parent
8f204e7797
commit
16a0aebcad
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ class S7I2S(Module, AutoCSR, AutoDoc):
|
|||
p_DEVICE = "7SERIES",
|
||||
p_FIFO_SIZE = "18Kb",
|
||||
p_DATA_WIDTH = fifo_data_width,
|
||||
p_ALMOST_EMPTY_OFFSET = fifo_depth,
|
||||
p_ALMOST_EMPTY_OFFSET = (512 - fifo_depth),
|
||||
p_ALMOST_FULL_OFFSET = 8,
|
||||
p_DO_REG = 0,
|
||||
i_CLK = ClockSignal(),
|
||||
|
|
Loading…
Reference in a new issue