Esequencer
SCPI Commands :
[SOURce<HW>]:BB:ESEQuencer:ERRor
[SOURce<HW>]:BB:ESEQuencer:MODE
[SOURce<HW>]:BB:ESEQuencer:PRESet
[SOURce<HW>]:BB:ESEQuencer:SEQCount
[SOURce<HW>]:BB:ESEQuencer:STATe
[SOURce<HW>]:BB:ESEQuencer:STRCount
- class EsequencerCls[source]
Esequencer commands group definition. 127 total commands, 13 Subgroups, 6 group commands
- get_error() str [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:ERRor value: str = driver.source.bb.esequencer.get_error()
Queries detected xml format errors.
- return
error: string
- get_mode() RsSmw.enums.ExtSeqMode [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:MODE value: enums.ExtSeqMode = driver.source.bb.esequencer.get_mode()
Selects the processing mode for the extended sequencer.
- return
mode: USER| PSEQuencer| DFINding| RTCI| ASEQuencing| PLAYback USER Processes user defined extended sequences. PSEQuencer Processes files created with the signal generation software R&S Pulse Sequencer. DFINding Processes files containing sequences with extended direction finding of the antennas. The files are created with the signal generation software R&S Pulse Sequencer. RTCI Processes files containing sequences of precalculated waveform. ASEQuencing Processes prestored ARB segments. PLAYback Processes user written PDW files.
- get_seq_count() int [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:SEQCount value: int = driver.source.bb.esequencer.get_seq_count()
Queries the number of sequencers.
- return
numb_of_sequencer: integer Number of available sequencers depends on the installed options. Range: 1 to 6
- get_state() bool [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:STATe value: bool = driver.source.bb.esequencer.get_state()
Activates signal generation, and deactivates all digital standards, digital modulation modes and other sweeps in the corresponding path.
- return
state: 1| ON| 0| OFF
- get_str_count() int [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:STRCount value: int = driver.source.bb.esequencer.get_str_count()
Queries the number of streams.
- return
numb_of_streams: integer Range: 2 to 2
- preset() None [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:PRESet driver.source.bb.esequencer.preset()
Sets all the parameters of the extended sequencer to their default values (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:BB:ESEQuencer:STATe.
- preset_with_opc(opc_timeout_ms: int = - 1) None [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:PRESet driver.source.bb.esequencer.preset_with_opc()
Sets all the parameters of the extended sequencer to their default values (*RST values specified for the commands) . Not affected is the state set with the command [:SOURce<hw>]:BB:ESEQuencer:STATe.
Same as preset, but waits for the operation to complete before continuing further. Use the RsSmw.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
- set_mode(mode: RsSmw.enums.ExtSeqMode) None [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:MODE driver.source.bb.esequencer.set_mode(mode = enums.ExtSeqMode.ASEQuencing)
Selects the processing mode for the extended sequencer.
- param mode
USER| PSEQuencer| DFINding| RTCI| ASEQuencing| PLAYback USER Processes user defined extended sequences. PSEQuencer Processes files created with the signal generation software R&S Pulse Sequencer. DFINding Processes files containing sequences with extended direction finding of the antennas. The files are created with the signal generation software R&S Pulse Sequencer. RTCI Processes files containing sequences of precalculated waveform. ASEQuencing Processes prestored ARB segments. PLAYback Processes user written PDW files.
- set_state(state: bool) None [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:STATe driver.source.bb.esequencer.set_state(state = False)
Activates signal generation, and deactivates all digital standards, digital modulation modes and other sweeps in the corresponding path.
- param state
1| ON| 0| OFF
- set_str_count(numb_of_streams: int) None [source]
# SCPI: [SOURce<HW>]:BB:ESEQuencer:STRCount driver.source.bb.esequencer.set_str_count(numb_of_streams = 1)
Queries the number of streams.
- param numb_of_streams
integer Range: 2 to 2
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.esequencer.clone()
Subgroups