Date
SCPI Command :
[SOURce<HW>]:BB:GNSS:TRIGger:TIME:DATE
- class DateCls[source]
Date commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- class DateStruct[source]
Response structure. Fields:
Year: int: integer Range: 1980 to 9999
Month: int: integer Range: 1 to 12
Day: int: integer Range: 1 to 31
- get() DateStruct [source]
# SCPI: [SOURce<HW>]:BB:GNSS:TRIGger:TIME:DATE value: DateStruct = driver.source.bb.gnss.trigger.time.date.get()
Sets the date for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this date via the following command: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:STATe <DigStd> is the mnemonic for the digital standard, for example, ARB. Time-based triggering behaves analogously for all digital standards that support this feature.
- return
structure: for return value, see the help for DateStruct structure arguments.
- set(year: int, month: int, day: int) None [source]
# SCPI: [SOURce<HW>]:BB:GNSS:TRIGger:TIME:DATE driver.source.bb.gnss.trigger.time.date.set(year = 1, month = 1, day = 1)
Sets the date for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this date via the following command: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:STATe <DigStd> is the mnemonic for the digital standard, for example, ARB. Time-based triggering behaves analogously for all digital standards that support this feature.
- param year
integer Range: 1980 to 9999
- param month
integer Range: 1 to 12
- param day
integer Range: 1 to 31