core/icmp/LiteEthICMPEcho: Revert to PacketFIFO now that issue is understood.

edd98c23cb
This commit is contained in:
Florent Kermarrec 2022-04-25 15:55:59 +02:00
parent 9c0a9659c1
commit d20f36a6ba

View file

@ -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),