diff --git a/artiq/coredevice/ad9914.py b/artiq/coredevice/ad9914.py index 9466b90d8..2fde49f2c 100644 --- a/artiq/coredevice/ad9914.py +++ b/artiq/coredevice/ad9914.py @@ -81,8 +81,11 @@ class AD9914: self.exit_x_duration_mu = 3 * self.write_duration_mu @staticmethod - def get_rtio_channels(bus_channel, **kwargs): - return [(bus_channel, None)] + def get_rtio_channels(bus_channel, channel, **kwargs): + # return only first entry, as there are several devices with the same RTIO channel + if channel == 0: + return [(bus_channel, None)] + return [] @kernel def write(self, addr, data):