[docs]classTimeCls:"""Time commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("time",core,parent)
[docs]defset(self,hour:int,minute:int,second:float)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:TIME \n Snippet: driver.source.bb.gnss.time.start.time.set(hour = 1, minute = 1, second = 1.0) \n If the time base is UTC, sets the simulation start time in UTC time format. \n :param hour: integer Range: 0 to 23 :param minute: integer Range: 0 to 59 :param second: float Range: 0 to 59.999 """param=ArgSingleList().compose_cmd_string(ArgSingle('hour',hour,DataType.Integer),ArgSingle('minute',minute,DataType.Integer),ArgSingle('second',second,DataType.Float))self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:TIME:STARt:TIME {param}'.rstrip())
[docs]defget(self)->TimeStruct:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:TIME \n Snippet: value: TimeStruct = driver.source.bb.gnss.time.start.time.get() \n If the time base is UTC, sets the simulation start time in UTC time format. \n :return: structure: for return value, see the help for TimeStruct structure arguments."""returnself._core.io.query_struct(f'SOURce<HwInstance>:BB:GNSS:TIME:STARt:TIME?',self.__class__.TimeStruct())