[docs]classPatternCls:"""Pattern commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("pattern",core,parent)
[docs]defset(self,pattern:str,bitcount:int,userIx=repcap.UserIx.Default)->None:"""SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:DATA:PATTern \n Snippet: driver.source.bb.evdo.user.data.pattern.set(pattern = rawAbc, bitcount = 1, userIx = repcap.UserIx.Default) \n Sets the data pattern for the data portion of the packets sent to the user. The most significant bit (MSB) of this value is the MSB of the packet and the word is repeated to fill all space within the packet. \n :param pattern: numeric :param bitcount: integer Range: 32 to 32 :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """param=ArgSingleList().compose_cmd_string(ArgSingle('pattern',pattern,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))userIx_cmd_val=self._cmd_group.get_repcap_cmd_value(userIx,repcap.UserIx)self._core.io.write(f'SOURce<HwInstance>:BB:EVDO:USER{userIx_cmd_val}:DATA:PATTern {param}'.rstrip())
[docs]defget(self,userIx=repcap.UserIx.Default)->PatternStruct:"""SCPI: [SOURce<HW>]:BB:EVDO:USER<ST>:DATA:PATTern \n Snippet: value: PatternStruct = driver.source.bb.evdo.user.data.pattern.get(userIx = repcap.UserIx.Default) \n Sets the data pattern for the data portion of the packets sent to the user. The most significant bit (MSB) of this value is the MSB of the packet and the word is repeated to fill all space within the packet. \n :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: structure: for return value, see the help for PatternStruct structure arguments."""userIx_cmd_val=self._cmd_group.get_repcap_cmd_value(userIx,repcap.UserIx)returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:EVDO:USER{userIx_cmd_val}:DATA:PATTern?',self.__class__.PatternStruct())