core/icmp: Revert to SyncFIFO for now until PacketFIFO regression is investigated.

This commit is contained in:
Florent Kermarrec 2021-12-27 11:00:22 +01:00
parent 7acb2a8c1c
commit a8d9c5ef6a
1 changed files with 4 additions and 4 deletions

View File

@ -129,10 +129,10 @@ class LiteEthICMPEcho(Module):
# # #
self.submodules.buffer = PacketFIFO(eth_icmp_user_description(dw),
payload_depth = 128//(dw//8),
param_depth = 1,
buffered = True
self.submodules.buffer = stream.SyncFIFO(
eth_icmp_user_description(dw),
128 // (dw // 8),
buffered=True
)
self.comb += [
sink.connect(self.buffer.sink),