[docs]classPlciCls:"""Plci commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("plci",core,parent)
[docs]defget_cid(self)->int:"""SCPI: [SOURce<HW>]:BB:V5G:UL:[PLCI]:CID \n Snippet: value: int = driver.source.bb.v5G.uplink.plci.get_cid() \n No command help available \n :return: cell_id: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:PLCI:CID?')returnConversions.str_to_int(response)
[docs]defset_cid(self,cell_id:int)->None:"""SCPI: [SOURce<HW>]:BB:V5G:UL:[PLCI]:CID \n Snippet: driver.source.bb.v5G.uplink.plci.set_cid(cell_id = 1) \n No command help available \n :param cell_id: No help available """param=Conversions.decimal_value_to_str(cell_id)self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:PLCI:CID {param}')
[docs]defget_cid_group(self)->int:"""SCPI: [SOURce<HW>]:BB:V5G:UL:[PLCI]:CIDGroup \n Snippet: value: int = driver.source.bb.v5G.uplink.plci.get_cid_group() \n No command help available \n :return: phys_cell_id_group: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:PLCI:CIDGroup?')returnConversions.str_to_int(response)
[docs]defset_cid_group(self,phys_cell_id_group:int)->None:"""SCPI: [SOURce<HW>]:BB:V5G:UL:[PLCI]:CIDGroup \n Snippet: driver.source.bb.v5G.uplink.plci.set_cid_group(phys_cell_id_group = 1) \n No command help available \n :param phys_cell_id_group: No help available """param=Conversions.decimal_value_to_str(phys_cell_id_group)self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:PLCI:CIDGroup {param}')
[docs]defget_plid(self)->int:"""SCPI: [SOURce<HW>]:BB:V5G:UL:[PLCI]:PLID \n Snippet: value: int = driver.source.bb.v5G.uplink.plci.get_plid() \n No command help available \n :return: physical_layer_id: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:V5G:UL:PLCI:PLID?')returnConversions.str_to_int(response)
[docs]defset_plid(self,physical_layer_id:int)->None:"""SCPI: [SOURce<HW>]:BB:V5G:UL:[PLCI]:PLID \n Snippet: driver.source.bb.v5G.uplink.plci.set_plid(physical_layer_id = 1) \n No command help available \n :param physical_layer_id: No help available """param=Conversions.decimal_value_to_str(physical_layer_id)self._core.io.write(f'SOURce<HwInstance>:BB:V5G:UL:PLCI:PLID {param}')