mirror of
https://github.com/enjoy-digital/liteeth.git
synced 2025-01-03 03:43:37 -05:00
core/icmp/LiteEthICMPEcho: Revert to PacketFIFO now that issue is understood.
edd98c23cb
This commit is contained in:
parent
9c0a9659c1
commit
d20f36a6ba
1 changed files with 4 additions and 4 deletions
|
@ -131,10 +131,10 @@ class LiteEthICMPEcho(Module):
|
|||
|
||||
# # #
|
||||
|
||||
self.submodules.buffer = stream.SyncFIFO(
|
||||
eth_icmp_user_description(dw),
|
||||
128 // (dw // 8),
|
||||
buffered=True
|
||||
self.submodules.buffer = PacketFIFO(eth_icmp_user_description(dw),
|
||||
payload_depth = 128//(dw//8),
|
||||
param_depth = 1,
|
||||
buffered = True
|
||||
)
|
||||
self.comb += [
|
||||
sink.connect(self.buffer.sink),
|
||||
|
|
Loading…
Reference in a new issue