mirror of https://github.com/m-labs/artiq.git
urukul, ad9912, ad9910: expose CFG RF switch better
* conincident setting of multiple switches * per channel setting
This commit is contained in:
parent
4e04b6b4dd
commit
89a961fb00
|
@ -230,3 +230,13 @@ class AD9910:
|
||||||
:param att: Attenuation in dB.
|
:param att: Attenuation in dB.
|
||||||
"""
|
"""
|
||||||
self.cpld.set_att(self.chip_select - 4, att)
|
self.cpld.set_att(self.chip_select - 4, att)
|
||||||
|
|
||||||
|
@kernel
|
||||||
|
def cfg_sw(self, state):
|
||||||
|
"""Set CPLD CFG RF switch state. The RF switch is controlled by the
|
||||||
|
logical or of the CPLD configuration shift register
|
||||||
|
RF switch bit and the SW TTL line (if used).
|
||||||
|
|
||||||
|
:param state: CPLD CFG RF switch bit
|
||||||
|
"""
|
||||||
|
self.cpld.cfg_sw(self.chip_select - 4, state)
|
||||||
|
|
|
@ -182,3 +182,13 @@ class AD9912:
|
||||||
"""
|
"""
|
||||||
self.set_mu(self.frequency_to_ftw(frequency),
|
self.set_mu(self.frequency_to_ftw(frequency),
|
||||||
self.turns_to_pow(phase))
|
self.turns_to_pow(phase))
|
||||||
|
|
||||||
|
@kernel
|
||||||
|
def cfg_sw(self, state):
|
||||||
|
"""Set CPLD CFG RF switch state. The RF switch is controlled by the
|
||||||
|
logical or of the CPLD configuration shift register
|
||||||
|
RF switch bit and the SW TTL line (if used).
|
||||||
|
|
||||||
|
:param state: CPLD CFG RF switch bit
|
||||||
|
"""
|
||||||
|
self.cpld.cfg_sw(self.chip_select - 4, state)
|
||||||
|
|
|
@ -231,6 +231,14 @@ class CPLD:
|
||||||
c &= ~(1 << channel)
|
c &= ~(1 << channel)
|
||||||
self.cfg_write(c)
|
self.cfg_write(c)
|
||||||
|
|
||||||
|
@kernel
|
||||||
|
def cfg_switches(self, state):
|
||||||
|
"""Configure all four RF switches through the configuration register.
|
||||||
|
|
||||||
|
:param state: RF switch state as a 4 bit integer.
|
||||||
|
"""
|
||||||
|
self.cfg_write((self.cfg_reg & ~0xf) | state)
|
||||||
|
|
||||||
@kernel
|
@kernel
|
||||||
def set_att_mu(self, channel, att):
|
def set_att_mu(self, channel, att):
|
||||||
"""Set digital step attenuator in machine units.
|
"""Set digital step attenuator in machine units.
|
||||||
|
|
Loading…
Reference in New Issue