diff --git a/artiq/coredevice/dds.py b/artiq/coredevice/dds.py index 9ba4584d8..037df881c 100644 --- a/artiq/coredevice/dds.py +++ b/artiq/coredevice/dds.py @@ -33,13 +33,16 @@ class DDSBus: @kernel def batch_enter(self): """Starts a DDS command batch. All DDS commands are buffered - after this call, until ``batch_exit`` is called.""" + after this call, until ``batch_exit`` is called. + + The time of execution of the DDS commands is the time of entering the + batch (as closely as hardware permits).""" syscall("dds_batch_enter", now_mu()) @kernel def batch_exit(self): """Ends a DDS command batch. All buffered DDS commands are issued - on the bus, and FUD is pulsed at the time the batch started.""" + on the bus.""" syscall("dds_batch_exit")