forked from M-Labs/artiq
rtio: use same reset for counter_rtio whatever the interface delay is
This commit is contained in:
parent
15b48be6e4
commit
6b998581cc
|
@ -162,7 +162,7 @@ class _OutputManager(Module):
|
|||
# latency compensation
|
||||
if interface.delay:
|
||||
counter_rtio = Signal.like(counter.value_rtio)
|
||||
self.sync.rio += counter_rtio.eq(counter.value_rtio -
|
||||
self.sync.rtio += counter_rtio.eq(counter.value_rtio -
|
||||
interface.delay + 1)
|
||||
else:
|
||||
counter_rtio = counter.value_rtio
|
||||
|
@ -221,7 +221,7 @@ class _InputManager(Module):
|
|||
# latency compensation
|
||||
if interface.delay:
|
||||
counter_rtio = Signal.like(counter.value_rtio)
|
||||
self.sync.rio += counter_rtio.eq(counter.value_rtio -
|
||||
self.sync.rtio += counter_rtio.eq(counter.value_rtio -
|
||||
interface.delay + 1)
|
||||
else:
|
||||
counter_rtio = counter.value_rtio
|
||||
|
|
Loading…
Reference in New Issue