Time

SCPI Commands :

[SOURce<HW>]:BB:NR5G:TRIGger:TIME:DATE
[SOURce<HW>]:BB:NR5G:TRIGger:TIME:TIME
[SOURce<HW>]:BB:NR5G:TRIGger:TIME:[STATe]
class TimeCls[source]

Time commands group definition. 3 total commands, 0 Subgroups, 3 group commands

class DateStruct[source]

Structure for reading output parameters. Fields:

  • Year: int: integer Range: 1980 to 9999

  • Month: int: integer Range: 1 to 12

  • Day: int: integer Range: 1 to 31

class TimeStruct[source]

Structure for reading output parameters. Fields:

  • Hour: int: integer Range: 0 to 23

  • Minute: int: integer Range: 0 to 59

  • Second: int: integer Range: 0 to 59

get_date() DateStruct[source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:TIME:DATE
value: DateStruct = driver.source.bb.nr5G.trigger.time.get_date()

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.

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:TIME:[STATe]
value: bool = driver.source.bb.nr5G.trigger.time.get_state()

Activates time-based triggering with a fixed time reference. If activated, the R&S SMW200A triggers signal generation when its operating system time matches a specified time. Specify the trigger date and trigger time with the following commands: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:DATE SOURce<hw>:BB:<DigStd>:TRIGger:TIME:TIME <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:

state: 1| ON| 0| OFF

get_time() TimeStruct[source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:TIME:TIME
value: TimeStruct = driver.source.bb.nr5G.trigger.time.get_time()

Sets the time for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this time 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 TimeStruct structure arguments.

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:TRIGger:TIME:[STATe]
driver.source.bb.nr5G.trigger.time.set_state(state = False)

Activates time-based triggering with a fixed time reference. If activated, the R&S SMW200A triggers signal generation when its operating system time matches a specified time. Specify the trigger date and trigger time with the following commands: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:DATE SOURce<hw>:BB:<DigStd>:TRIGger:TIME:TIME <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 state:

1| ON| 0| OFF