forked from M-Labs/artiq
drtio: fix packet truncation detection in RTPacketSatellite
This commit is contained in:
parent
93a71b9f77
commit
0edffb54c2
|
@ -297,7 +297,7 @@ class RTPacketSatellite(Module):
|
||||||
|
|
||||||
ongoing_packet_next = Signal()
|
ongoing_packet_next = Signal()
|
||||||
ongoing_packet = Signal()
|
ongoing_packet = Signal()
|
||||||
self.sync.rtio_rx += ongoing_packet.eq(ongoing_packet_next)
|
self.sync += ongoing_packet.eq(ongoing_packet_next)
|
||||||
|
|
||||||
rx_fsm.act("INPUT",
|
rx_fsm.act("INPUT",
|
||||||
If(rx_dp.frame_r,
|
If(rx_dp.frame_r,
|
||||||
|
|
Loading…
Reference in New Issue