mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
update doc comments on events for i2s
This commit is contained in:
parent
416afd3109
commit
d2b394a9be
1 changed files with 4 additions and 4 deletions
|
@ -131,11 +131,11 @@ class i2s_slave(Module, AutoCSR, AutoDoc):
|
|||
# interrupts
|
||||
self.submodules.ev = EventManager()
|
||||
if hasattr(pads, 'rx'):
|
||||
self.ev.rx_ready = EventSourcePulse() # rising edge triggered, indicates FIFO is ready to read
|
||||
self.ev.rx_error = EventSourcePulse() # indicates a rx error has happened
|
||||
self.ev.rx_ready = EventSourcePulse(description="Indicates FIFO is ready to read") # rising edge triggered
|
||||
self.ev.rx_error = EventSourcePulse(description="Indicates an Rx error has happened (over/underflow)")
|
||||
if hasattr(pads, 'tx'):
|
||||
self.ev.tx_ready = EventSourcePulse() # indicates space available in Tx buffer for next quantum
|
||||
self.ev.tx_error = EventSourcePulse() # indicates a tx error has happened
|
||||
self.ev.tx_ready = EventSourcePulse(description="Indicates enough space available for next Tx quanta of {} words".format(fifodepth))
|
||||
self.ev.tx_error = EventSourcePulse(description="Indicates a Tx error has happened (over/underflow")
|
||||
self.ev.finalize()
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue