Time

SCPI Command :

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

Time commands group definition. 3 total commands, 2 Subgroups, 1 group commands

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

Activates time-based triggering with a fixed time reference. If activated, the R&S SMBV100B 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

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

Activates time-based triggering with a fixed time reference. If activated, the R&S SMBV100B 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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.gnss.trigger.time.clone()

Subgroups