[docs]classBitLowCls:"""BitLow commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("bitLow",core,parent)
[docs]defset(self,pattern:str,bitcount:int,userEquipment=repcap.UserEquipment.Default)->None:"""SCPI: [SOURce<HW>]:BB:EUTRa:UL:UE<ST>:SL:V2X:BITLow \n Snippet: driver.source.bb.eutra.uplink.ue.sl.v2X.bitLow.set(pattern = rawAbc, bitcount = 1, userEquipment = repcap.UserEquipment.Default) \n Sets the subframe bitmap. [:SOURce<hw>]:BB:EUTRa:UL:UE<st>:SL:V2X:BITLow is enabled, if [:SOURce<hw>]:BB:EUTRa:UL:UE<st>:SL:V2X:BMPLength10|16|20|30|40|50. \n :param pattern: numeric :param bitcount: integer Range: 10 to 50 :param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue') """param=ArgSingleList().compose_cmd_string(ArgSingle('pattern',pattern,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))userEquipment_cmd_val=self._cmd_group.get_repcap_cmd_value(userEquipment,repcap.UserEquipment)self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:UL:UE{userEquipment_cmd_val}:SL:V2X:BITLow {param}'.rstrip())
[docs]defget(self,userEquipment=repcap.UserEquipment.Default)->BitLowStruct:"""SCPI: [SOURce<HW>]:BB:EUTRa:UL:UE<ST>:SL:V2X:BITLow \n Snippet: value: BitLowStruct = driver.source.bb.eutra.uplink.ue.sl.v2X.bitLow.get(userEquipment = repcap.UserEquipment.Default) \n Sets the subframe bitmap. [:SOURce<hw>]:BB:EUTRa:UL:UE<st>:SL:V2X:BITLow is enabled, if [:SOURce<hw>]:BB:EUTRa:UL:UE<st>:SL:V2X:BMPLength10|16|20|30|40|50. \n :param userEquipment: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Ue') :return: structure: for return value, see the help for BitLowStruct structure arguments."""userEquipment_cmd_val=self._cmd_group.get_repcap_cmd_value(userEquipment,repcap.UserEquipment)returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:EUTRa:UL:UE{userEquipment_cmd_val}:SL:V2X:BITLow?',self.__class__.BitLowStruct())