[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,mobileStation=repcap.MobileStation.Default)->None:"""SCPI: [SOURce<HW>]:BB:C2K:MSTation<ST>:TPC:DATA:PATTern \n Snippet: driver.source.bb.c2K.mstation.tpc.data.pattern.set(pattern = rawAbc, bitcount = 1, mobileStation = repcap.MobileStation.Default) \n Sets the bit pattern for the PATTern selection. \n :param pattern: numeric :param bitcount: integer Range: 1 to 64 :param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation') """param=ArgSingleList().compose_cmd_string(ArgSingle('pattern',pattern,DataType.RawString),ArgSingle('bitcount',bitcount,DataType.Integer))mobileStation_cmd_val=self._cmd_group.get_repcap_cmd_value(mobileStation,repcap.MobileStation)self._core.io.write(f'SOURce<HwInstance>:BB:C2K:MSTation{mobileStation_cmd_val}:TPC:DATA:PATTern {param}'.rstrip())
[docs]defget(self,mobileStation=repcap.MobileStation.Default)->PatternStruct:"""SCPI: [SOURce<HW>]:BB:C2K:MSTation<ST>:TPC:DATA:PATTern \n Snippet: value: PatternStruct = driver.source.bb.c2K.mstation.tpc.data.pattern.get(mobileStation = repcap.MobileStation.Default) \n Sets the bit pattern for the PATTern selection. \n :param mobileStation: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Mstation') :return: structure: for return value, see the help for PatternStruct structure arguments."""mobileStation_cmd_val=self._cmd_group.get_repcap_cmd_value(mobileStation,repcap.MobileStation)returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:C2K:MSTation{mobileStation_cmd_val}:TPC:DATA:PATTern?',self.__class__.PatternStruct())