[docs]classStateCls:"""State commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("state",core,parent)
[docs]defset(self,state:bool,subframeNull=repcap.SubframeNull.Default)->None:"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:STATe \n Snippet: driver.source.bb.eutra.downlink.subf.encc.state.set(state = False, subframeNull = repcap.SubframeNull.Default) \n Enables/disables the PDCCH, PCFICH and PHICH allocation. \n :param state: 1| ON| 0| OFF :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') """param=Conversions.bool_to_str(state)subframeNull_cmd_val=self._cmd_group.get_repcap_cmd_value(subframeNull,repcap.SubframeNull)self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:STATe {param}')
[docs]defget(self,subframeNull=repcap.SubframeNull.Default)->bool:"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:[SUBF<ST0>]:ENCC:STATe \n Snippet: value: bool = driver.source.bb.eutra.downlink.subf.encc.state.get(subframeNull = repcap.SubframeNull.Default) \n Enables/disables the PDCCH, PCFICH and PHICH allocation. \n :param subframeNull: optional repeated capability selector. Default value: Nr0 (settable in the interface 'Subf') :return: state: 1| ON| 0| OFF"""subframeNull_cmd_val=self._cmd_group.get_repcap_cmd_value(subframeNull,repcap.SubframeNull)response=self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:SUBF{subframeNull_cmd_val}:ENCC:STATe?')returnConversions.str_to_bool(response)