forked from M-Labs/artiq
rtio: add a missing case for collision reporting
This commit is contained in:
parent
62068da232
commit
0a6dd963cb
|
@ -167,6 +167,9 @@ class _OutputManager(Module):
|
|||
(self.ev.timestamp[fine_ts_width:] == buf.timestamp[fine_ts_width:])
|
||||
& ((self.ev.timestamp[:fine_ts_width] != buf.timestamp[:fine_ts_width])
|
||||
|different_addresses))
|
||||
else:
|
||||
self.sync.rsys += collision.eq(
|
||||
(self.ev.timestamp == buf.timestamp) & different_addresses)
|
||||
else:
|
||||
self.sync.rsys += collision.eq(
|
||||
self.ev.timestamp[fine_ts_width:] == buf.timestamp[fine_ts_width:])
|
||||
|
|
Loading…
Reference in New Issue