From 0bf57f4ebd177922d53f8d3dfc7f5c1357e1a197 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Tue, 18 Apr 2023 13:19:01 +0100 Subject: [PATCH] Fix ADF3536 having RTIO channel names The channel in this device refers to a channel on the mirny, not an RTIO channel. --- artiq/coredevice/adf5356.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/coredevice/adf5356.py b/artiq/coredevice/adf5356.py index f2b594dbf..0bffb91be 100644 --- a/artiq/coredevice/adf5356.py +++ b/artiq/coredevice/adf5356.py @@ -74,8 +74,8 @@ class ADF5356: self._init_registers() @staticmethod - def get_rtio_channels(channel, **kwargs): - return [(channel, None)] + def get_rtio_channels(**kwargs): + return [] @kernel def init(self, blind=False):