core/icmp: Revert to SyncFIFO for now until PacketFIFO regression is investigated.
This commit is contained in:
parent
7acb2a8c1c
commit
a8d9c5ef6a
|
@ -129,10 +129,10 @@ class LiteEthICMPEcho(Module):
|
||||||
|
|
||||||
# # #
|
# # #
|
||||||
|
|
||||||
self.submodules.buffer = PacketFIFO(eth_icmp_user_description(dw),
|
self.submodules.buffer = stream.SyncFIFO(
|
||||||
payload_depth = 128//(dw//8),
|
eth_icmp_user_description(dw),
|
||||||
param_depth = 1,
|
128 // (dw // 8),
|
||||||
buffered = True
|
buffered=True
|
||||||
)
|
)
|
||||||
self.comb += [
|
self.comb += [
|
||||||
sink.connect(self.buffer.sink),
|
sink.connect(self.buffer.sink),
|
||||||
|
|
Loading…
Reference in New Issue