from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal.Types import DataType
from ........Internal.StructBase import StructBase
from ........Internal.ArgStruct import ArgStruct
from ........Internal.ArgSingleList import ArgSingleList
from ........Internal.ArgSingle import ArgSingle
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TimeCls:
"""Time commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("time", core, parent)
[docs] def set(self, hour: int, minute: int, second: float) -> None:
"""SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:TOAData:TIME \n
Snippet: driver.source.bb.gnss.adGeneration.galileo.toaData.time.set(hour = 1, minute = 1, second = 1.0) \n
Enabled for UTC or GLONASS timebase ([:SOURce<hw>]:BB:GNSS:ADGeneration:GPS:TOAData:TBASis) . Enters the exact start time
for the assistance data 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:ADGeneration:GALileo:TOAData:TIME {param}'.rstrip())
# noinspection PyTypeChecker
[docs] class TimeStruct(StructBase):
"""Response structure. Fields: \n
- Hour: int: integer Range: 0 to 23
- Minute: int: integer Range: 0 to 59
- Second: float: float Range: 0 to 59.999"""
__meta_args_list = [
ArgStruct.scalar_int('Hour'),
ArgStruct.scalar_int('Minute'),
ArgStruct.scalar_float('Second')]
def __init__(self):
StructBase.__init__(self, self)
self.Hour: int = None
self.Minute: int = None
self.Second: float = None
[docs] def get(self) -> TimeStruct:
"""SCPI: [SOURce<HW>]:BB:GNSS:ADGeneration:GALileo:TOAData:TIME \n
Snippet: value: TimeStruct = driver.source.bb.gnss.adGeneration.galileo.toaData.time.get() \n
Enabled for UTC or GLONASS timebase ([:SOURce<hw>]:BB:GNSS:ADGeneration:GPS:TOAData:TBASis) . Enters the exact start time
for the assistance data in UTC time format. \n
:return: structure: for return value, see the help for TimeStruct structure arguments."""
return self._core.io.query_struct(f'SOURce<HwInstance>:BB:GNSS:ADGeneration:GALileo:TOAData:TIME?', self.__class__.TimeStruct())