Ostreams
SCPI Commands :
[SOURce<HW>]:BB:GNSS:OSTReams:CONFlict
[SOURce<HW>]:BB:GNSS:OSTReams:COUNt
[SOURce<HW>]:BB:GNSS:OSTReams:LOCK
- Commands in total: 4Subgroups: 1Direct child commands: 3
- get_conflict() bool[source]
# [SOURce<HW>]:BB:GNSS:OSTReams:CONFlict value: bool = driver.source.bb.gnss.ostreams.get_conflict()
Indicates stream-specific and general signal generation conflicts in the GNSS output streams configuration.
- Returns:
conflict_status: 1 | ON | 0| OFF
- get_count() int[source]
# [SOURce<HW>]:BB:GNSS:OSTReams:COUNt value: int = driver.source.bb.gnss.ostreams.get_count()
Sets the number of GNSS streams.
- Returns:
output_streams: 1 | 2| 3 | 4| 5 | 6 Range: 1 to 4
- get_lock() bool[source]
# [SOURce<HW>]:BB:GNSS:OSTReams:LOCK value: bool = driver.source.bb.gnss.ostreams.get_lock()
Locks the output streams mapping configuration.
- Returns:
lock_state: 1 | ON | 0| OFF
- set_count(output_streams: int) None[source]
# [SOURce<HW>]:BB:GNSS:OSTReams:COUNt driver.source.bb.gnss.ostreams.set_count(output_streams = 1)
Sets the number of GNSS streams.
- Parameters:
output_streams – 1 | 2| 3 | 4| 5 | 6 Range: 1 to 4
- set_lock(lock_state: bool) None[source]
# [SOURce<HW>]:BB:GNSS:OSTReams:LOCK driver.source.bb.gnss.ostreams.set_lock(lock_state = False)
Locks the output streams mapping configuration.
- Parameters:
lock_state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
ostreams_copy = driver.source.bb.gnss.ostreams.clone()
Subgroups