def __init__(self, visa): """ Constructor :type visa: VisaInterface :param visa: the PyVisa interface """ VisaObject.__init__(self, visa)
def __init__(self, visa): """ Constructor :type visa: visaInterface :param visa: the PyVisa connection """ VisaObject.__init__(self, visa)
def __init__(self, visa): # pylint: disable=W0231 """ Constructor :type visa: visaInterface :param visa: the PyVisa connection """ VisaObject.__init__(self, visa)
def __init__(self, visa): """ Constructor :type root: weakref :param root: a weak reference on the root class (Agilent8960) """ VisaObject.__init__(self, visa) self._data = None
def __init__(self, visa): """ Constructor :type visa: visaInterface :param visa: the PyVisa connection """ VisaObject.__init__(self, visa) self.__data = DataTDSCDMA(visa) self.__is_cell_off = True self.__rrc_conn_state = "ON" self.__antennas_number = None
def __init__(self, visa): # pylint: disable=W0231 """ Constructor :type visa: visaInterface :param visa: the PyVisa connection """ VisaObject.__init__(self, visa) Iperf.__init__(self) self._visa = visa self.su_id = "" self.window_size_enabled = True
def __init__(self, visa, number=1): """ Constructor :type visa: visaInterface :param visa: the PyVisa connection :type number: int :param number: cell number """ VisaObject.__init__(self, visa) self._data = None self._name = "BTS" + str(number)
def __init__(self, visa): """ Constructor :type visa: visaInterface :param visa: the PyVisa connection """ VisaObject.__init__(self, visa) self.__data = Data4G(visa) self.__messaging = Messaging4G(visa) self.__voicecall = VoiceCall4G(visa) self.__is_cell_off = True self.__rrc_conn_state = "ON" self.__antennas_number = None
def __del__(self): """ Destructor """ VisaObject.__del__(self)