From d0437f5672b7dd5f898a73469d730bc46f058ecc Mon Sep 17 00:00:00 2001 From: mwojcik Date: Wed, 22 Feb 2023 10:20:41 +0800 Subject: [PATCH] rtio core: fix minimum_coarse_timestamp --- artiq/gateware/rtio/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gateware/rtio/core.py b/artiq/gateware/rtio/core.py index c4dae4dc1..1d9cfc006 100644 --- a/artiq/gateware/rtio/core.py +++ b/artiq/gateware/rtio/core.py @@ -66,7 +66,7 @@ class Core(Module, AutoCSR): interface=self.cri) self.submodules += outputs self.comb += outputs.coarse_timestamp.eq(tsc.coarse_ts) - self.sync += outputs.minimum_coarse_timestamp.eq(tsc.coarse_ts + 16) + self.sync += outputs.minimum_coarse_timestamp.eq(tsc.coarse_ts + 12) inputs = InputCollector(tsc, channels, quash_channels=quash_channels,