Esempio n. 1
0
 def __init__(self, visa):
     """
     Constructor
     :type visa: VisaInterface
     :param visa: the PyVisa interface
     """
     VisaObject.__init__(self, visa)
Esempio n. 2
0
 def __init__(self, visa):
     """
     Constructor
     :type visa: visaInterface
     :param visa: the PyVisa connection
     """
     VisaObject.__init__(self, visa)
Esempio n. 3
0
 def __init__(self, visa):  # pylint: disable=W0231
     """
     Constructor
     :type visa: visaInterface
     :param visa: the PyVisa connection
     """
     VisaObject.__init__(self, visa)
Esempio n. 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
Esempio n. 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
Esempio n. 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
Esempio n. 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)
Esempio n. 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
Esempio n. 9
0
 def __del__(self):
     """
     Destructor
     """
     VisaObject.__del__(self)