[docs]classHwAccessCls:"""HwAccess commands group definition. 3 total commands, 0 Subgroups, 3 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("hwAccess",core,parent)
[docs]defget_description(self)->str:"""SCPI: SYSTem:PROFiling:HWACcess:DESCription \n Snippet: value: str = driver.system.profiling.hwAccess.get_description() \n No command help available \n :return: description: No help available """response=self._core.io.query_str('SYSTem:PROFiling:HWACcess:DESCription?')returntrim_str_response(response)
[docs]defget_pduration(self)->int:"""SCPI: SYSTem:PROFiling:HWACcess:PDURation \n Snippet: value: int = driver.system.profiling.hwAccess.get_pduration() \n No command help available \n :return: duration_us: No help available """response=self._core.io.query_str('SYSTem:PROFiling:HWACcess:PDURation?')returnConversions.str_to_int(response)
[docs]defset_pduration(self,duration_us:int)->None:"""SCPI: SYSTem:PROFiling:HWACcess:PDURation \n Snippet: driver.system.profiling.hwAccess.set_pduration(duration_us = 1) \n No command help available \n :param duration_us: No help available """param=Conversions.decimal_value_to_str(duration_us)self._core.io.write(f'SYSTem:PROFiling:HWACcess:PDURation {param}')
[docs]defget_state(self)->bool:"""SCPI: SYSTem:PROFiling:HWACcess:STATe \n Snippet: value: bool = driver.system.profiling.hwAccess.get_state() \n No command help available \n :return: state: No help available """response=self._core.io.query_str('SYSTem:PROFiling:HWACcess:STATe?')returnConversions.str_to_bool(response)
[docs]defset_state(self,state:bool)->None:"""SCPI: SYSTem:PROFiling:HWACcess:STATe \n Snippet: driver.system.profiling.hwAccess.set_state(state = False) \n No command help available \n :param state: No help available """param=Conversions.bool_to_str(state)self._core.io.write(f'SYSTem:PROFiling:HWACcess:STATe {param}')