projects
/
litex.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33d9e45
)
add doc comment for event
author
bunnie
<bunnie@kosagi.com>
Thu, 6 Feb 2020 09:56:21 +0000
(17:56 +0800)
committer
bunnie
<bunnie@kosagi.com>
Thu, 6 Feb 2020 09:56:21 +0000
(17:56 +0800)
litex/soc/cores/spiopi.py
patch
|
blob
|
history
diff --git
a/litex/soc/cores/spiopi.py
b/litex/soc/cores/spiopi.py
index 12a05d71d38b1530b53f17c7a989bf7079d63769..937d8e5ecae54ae31e3317a0d69274930f98ac41 100644
(file)
--- a/
litex/soc/cores/spiopi.py
+++ b/
litex/soc/cores/spiopi.py
@@
-1019,7
+1019,7
@@
class SpiOpi(Module, AutoCSR, AutoDoc):
self.specials += MultiReg(pads.ecs_n, ecs_n)
self.submodules.ev = EventManager()
- self.ev.ecc_error = EventSourceProcess(
) # Falling edge triggered
+ self.ev.ecc_error = EventSourceProcess(
description="An ECC event has happened on the current block; triggered by falling edge of ECC_N")
self.ev.finalize()
self.comb += self.ev.ecc_error.trigger.eq(ecs_n)
ecc_reported = Signal()