mirror of https://github.com/m-labs/artiq.git
rtio/core: fix syntax
This commit is contained in:
parent
03b53c3af9
commit
3f8e431de6
|
@ -133,11 +133,10 @@ class _OutputManager(Module):
|
||||||
# Note: replace may be asserted at the same time as collision
|
# Note: replace may be asserted at the same time as collision
|
||||||
# when addresses are different. In that case, it is a collision.
|
# when addresses are different. In that case, it is a collision.
|
||||||
self.sync.rsys += replace.eq(self.ev.timestamp == buf.timestamp)
|
self.sync.rsys += replace.eq(self.ev.timestamp == buf.timestamp)
|
||||||
self.sync.rsys += \
|
|
||||||
# Detect sequence errors on coarse timestamps only
|
# Detect sequence errors on coarse timestamps only
|
||||||
# so that they are mutually exclusive with collision errors.
|
# so that they are mutually exclusive with collision errors.
|
||||||
sequence_error.eq(self.ev.timestamp[fine_ts_width:]
|
self.sync.rsys += sequence_error.eq(self.ev.timestamp[fine_ts_width:] <
|
||||||
< buf.timestamp[fine_ts_width:])
|
buf.timestamp[fine_ts_width:])
|
||||||
if interface.enable_replace:
|
if interface.enable_replace:
|
||||||
if hasattr(self.ev, "a"):
|
if hasattr(self.ev, "a"):
|
||||||
different_addresses = self.ev.a != buf.a
|
different_addresses = self.ev.a != buf.a
|
||||||
|
|
Loading…
Reference in New Issue