Ostreams

SCPI Commands :

[SOURce<HW>]:BB:GNSS:OSTReams:CONFlict
[SOURce<HW>]:BB:GNSS:OSTReams:COUNt
[SOURce<HW>]:BB:GNSS:OSTReams:LOCK
class OstreamsCls[source]

Ostreams commands group definition. 4 total commands, 1 Subgroups, 3 group commands

get_conflict() bool[source]
# SCPI: [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.

return:

conflict_status: 1| ON| 0| OFF

get_count() int[source]
# SCPI: [SOURce<HW>]:BB:GNSS:OSTReams:COUNt
value: int = driver.source.bb.gnss.ostreams.get_count()

Sets the number of GNSS streams.

return:

output_streams: 1| 2| 3| 4| 5| 6 Range: 1 to 4

get_lock() bool[source]
# SCPI: [SOURce<HW>]:BB:GNSS:OSTReams:LOCK
value: bool = driver.source.bb.gnss.ostreams.get_lock()

Locks the output streams mapping configuration.

return:

lock_state: 1| ON| 0| OFF

set_count(output_streams: int) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:OSTReams:COUNt
driver.source.bb.gnss.ostreams.set_count(output_streams = 1)

Sets the number of GNSS streams.

param output_streams:

1| 2| 3| 4| 5| 6 Range: 1 to 4

set_lock(lock_state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:GNSS:OSTReams:LOCK
driver.source.bb.gnss.ostreams.set_lock(lock_state = False)

Locks the output streams mapping configuration.

param lock_state:

1| ON| 0| OFF

Cloning the Group

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

Subgroups