2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-25 03:08:27 +08:00

coredevice: Add get_rtio_counter_mu() docstring [nfc]

This commit is contained in:
David Nadlinger 2018-10-26 12:16:57 +01:00 committed by Sébastien Bourdeauducq
parent d6fcc0529f
commit 5d2e3f975f

View File

@ -151,6 +151,15 @@ class Core:
@kernel
def get_rtio_counter_mu(self):
"""Retrieve the current value of the hardware RTIO timeline counter.
As the timing of kernel code executed on the CPU is inherently
non-deterministic, the return value is by necessity only a lower bound
for the actual value of the hardware register at the instant when
execution resumes in the caller.
For a more detailed description of these concepts, see :doc:`/rtio`.
"""
return rtio_get_counter()
@kernel