[docs]classUserCls:"""User commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("user",core,parent)
[docs]defget_catalog(self)->List[str]:"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:USER:RX:VEHicle:USER:CATalog \n Snippet: value: List[str] = driver.source.fsimulator.dsSimulation.user.rx.vehicle.user.get_catalog() \n No command help available \n :return: filenames: No help available """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:USER:RX:VEHicle:USER:CATalog?')returnConversions.str_to_str_list(response)
[docs]defget_select(self)->str:"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:USER:RX:VEHicle:USER:SELect \n Snippet: value: str = driver.source.fsimulator.dsSimulation.user.rx.vehicle.user.get_select() \n No command help available \n :return: veh_user_select: No help available """response=self._core.io.query_str('SOURce<HwInstance>:FSIMulator:DSSimulation:USER:RX:VEHicle:USER:SELect?')returntrim_str_response(response)
[docs]defset_select(self,veh_user_select:str)->None:"""SCPI: [SOURce<HW>]:FSIMulator:DSSimulation:USER:RX:VEHicle:USER:SELect \n Snippet: driver.source.fsimulator.dsSimulation.user.rx.vehicle.user.set_select(veh_user_select = 'abc') \n No command help available \n :param veh_user_select: No help available """param=Conversions.value_to_quoted_str(veh_user_select)self._core.io.write(f'SOURce<HwInstance>:FSIMulator:DSSimulation:USER:RX:VEHicle:USER:SELect {param}')