Skip to content

Commit

Permalink
rtio core: fix minimum_coarse_timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
Spaqin authored and sbourdeauducq committed Feb 22, 2023
1 parent 07d684a commit d0437f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion artiq/gateware/rtio/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, tsc, channels, lane_count=8, fifo_depth=128):
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,
Expand Down

0 comments on commit d0437f5

Please sign in to comment.