Fix AD9914 channel map

Signed-off-by: Egor Savkin <es@m-labs.hk>
pull/2080/head
Egor Savkin 2023-03-31 11:18:23 +08:00 committed by Sébastien Bourdeauducq
parent 8984f5104a
commit b5d9062ba9
1 changed files with 5 additions and 2 deletions

View File

@ -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):