Setup
SCPI Commands :
SIGNalconfig:SETup:REMove
SIGNalconfig:SETup:SOURce
SIGNalconfig:SETup:COUNt
- Commands in total: 10Subgroups: 4Direct child commands: 3
- get_count() int[source]
# SIGNalconfig:SETup:COUNt value: int = driver.signalConfig.setup.get_count()
Returns the number of lines defined in the signal configuration dialog.
- get_source() SignalSource[source]
# SIGNalconfig:SETup:SOURce value: enums.SignalSource = driver.signalConfig.setup.get_source()
Selects the source that is used for the symbol rate estimation. You can only select sources that has been enabled You can start the estimation of the symbol rate with method
RsRtx.signalConfig.setup.srEstimation.set()- Returns:
source: NONE | C1W1 | C1W2 | C1W3 | C2W1 | C2W2 | C2W3 | C3W1 | C3W2 | C3W3 | C4W1 | C4W2 | C4W3 | C1W4 | C2W4 | C3W4 | C4W4 | M1 | M2 | M3 | M4 | M5 | M6 | M7 | M8 | R1 | R2 | R3 | R4 | DIFF1 | DIFF2 | COMMON1 | COMMON2
- set_remove(index: int) None[source]
# SIGNalconfig:SETup:REMove driver.signalConfig.setup.set_remove(index = 1)
Removes the signal with the corresponding index.
- set_source(source: SignalSource) None[source]
# SIGNalconfig:SETup:SOURce driver.signalConfig.setup.set_source(source = enums.SignalSource.AJ1)
Selects the source that is used for the symbol rate estimation. You can only select sources that has been enabled You can start the estimation of the symbol rate with method
RsRtx.signalConfig.setup.srEstimation.set()- Parameters:
source – NONE | C1W1 | C1W2 | C1W3 | C2W1 | C2W2 | C2W3 | C3W1 | C3W2 | C3W3 | C4W1 | C4W2 | C4W3 | C1W4 | C2W4 | C3W4 | C4W4 | M1 | M2 | M3 | M4 | M5 | M6 | M7 | M8 | R1 | R2 | R3 | R4 | DIFF1 | DIFF2 | COMMON1 | COMMON2
Cloning the Group
# Create a copy of the original group, that exists independently
setup_copy = driver.signalConfig.setup.clone()
Subgroups