Source code for qcodes.instrument_drivers.Minicircuits._minicircuits_rc_sp4t

import math
from typing import TYPE_CHECKING, Optional

from qcodes import validators as vals
from qcodes.instrument import (
    ChannelList,
    InstrumentBaseKWArgs,
    InstrumentChannel,
    IPInstrument,
)

if TYPE_CHECKING:
    from typing_extensions import Unpack


[docs] class MiniCircuitsRCSP4TChannel(InstrumentChannel): def __init__(self, parent: IPInstrument, name: str, channel_letter: str): """ Args: parent: The instrument the channel is a part of name: the name of the channel channel_letter: channel letter ['a', 'b']) """ super().__init__(parent, name) self.channel_letter = channel_letter.upper() chanlist = ["a", "b"] self.channel_number = chanlist.index(channel_letter) self.add_parameter( "switch", label="switch", set_cmd=self._set_switch, get_cmd=self._get_switch, vals=vals.Ints(0, 4), ) def _set_switch(self, switch: int) -> None: if len(self._parent.channels) > 1: current_switchstate = int(self.ask("SWPORT?")) mask = 0xF << (4 * (1 - self.channel_number)) current_switchstate = current_switchstate & mask else: current_switchstate = 0 # getting the current switch state of # the other channel if more than one channel used if switch == 0: val = 0 else: val = 1 << (switch - 1) val = val << (4 * self.channel_number) # only one bit in each nibble can be set # corrisponding to each switch state # setting more than one will be ignored val = val | current_switchstate self.write(f"SETP={val}") # the 'SP4T' command wont work on early devices (FW < C8) def _get_switch(self) -> int: val = int(self.ask("SWPORT?")) val = (val >> (4 * self.channel_number)) & 0xF if val == 0: return 0 ret = int(math.log2(val) + 1) return ret
[docs] class MiniCircuitsRCSP4T(IPInstrument): """ Driver for MiniCircuits RC-SP4T RF switch connected via ethernet. Args: name: the name of the instrument address: ip address ie "10.0.0.1" port: port to connect to default Telnet:23 **kwargs: Forwarded to the baseclass """ def __init__( self, name: str, address: str, port: int = 23, **kwargs: "Unpack[InstrumentBaseKWArgs]", ): super().__init__(name, address, port, **kwargs) self.flush_connection() channels = ChannelList( self, "Channels", MiniCircuitsRCSP4TChannel, snapshotable=False ) _chanlist = ["a", "b"] _max_channel_number = int(self.IDN()["model"][3]) _chanlist = _chanlist[0:_max_channel_number] for c in _chanlist: channel = MiniCircuitsRCSP4TChannel(self, f"channel_{c}", c) channels.append(channel) self.add_submodule(f"channel_{c}", channel) self.add_submodule("channels", channels.to_channel_tuple()) self.connect_message()
[docs] def ask(self, cmd: str) -> str: ret = self.ask_raw(cmd) ret = ret.strip() return ret
[docs] def get_idn(self) -> dict[str, Optional[str]]: fw = self.ask("FIRMWARE?") MN = self.ask("MN?") SN = self.ask("SN?") id_dict: dict[str, Optional[str]] = { "firmware": fw, "model": MN[3:], "serial": SN[3:], "vendor": "Mini-Circuits", } return id_dict