Beispiel #1
0
 def __init__(self, visa):
     """
     Constructor
     :type visa: visaInterface
     :param visa: the PyVisa connection
     """
     VisaObject.__init__(self, visa)
Beispiel #2
0
 def __init__(self, visa):
     """
     Constructor
     :type visa: VisaInterface
     :param visa: the PyVisa interface
     """
     VisaObject.__init__(self, visa)
Beispiel #3
0
 def __init__(self, visa):  # pylint: disable=W0231
     """
     Constructor
     :type visa: visaInterface
     :param visa: the PyVisa connection
     """
     VisaObject.__init__(self, visa)
Beispiel #4
0
 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
Beispiel #5
0
 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
Beispiel #6
0
 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
Beispiel #7
0
    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)
Beispiel #8
0
 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