mirror of https://github.com/m-labs/artiq.git
coredevice/ad53xx: remove problematic default param
This commit is contained in:
parent
cbc767119d
commit
d8e1a22bdf
|
@ -317,7 +317,7 @@ class AD53xx:
|
||||||
self.ldac.on()
|
self.ldac.on()
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def set_dac_mu(self, values: list[int32], channels: list[int32] = list(range(40))):
|
def set_dac_mu(self, values: list[int32], channels: list[int32]): # NAC3TODO default list(range(40))
|
||||||
"""Program multiple DAC channels and pulse LDAC to update the DAC
|
"""Program multiple DAC channels and pulse LDAC to update the DAC
|
||||||
outputs.
|
outputs.
|
||||||
|
|
||||||
|
@ -348,7 +348,7 @@ class AD53xx:
|
||||||
at_mu(t0)
|
at_mu(t0)
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def set_dac(self, voltages: list[float], channels: list[int32] = list(range(40))):
|
def set_dac(self, voltages: list[float], channels: list[int32]): # NAC3TODO default list(range(40))
|
||||||
"""Program multiple DAC channels and pulse LDAC to update the DAC
|
"""Program multiple DAC channels and pulse LDAC to update the DAC
|
||||||
outputs.
|
outputs.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue