Carrier
SCPI Commands :
[SOURce<HW>]:BB:MCCW:EDIT:CARRier:STARt
[SOURce<HW>]:BB:MCCW:EDIT:CARRier:STATe
[SOURce<HW>]:BB:MCCW:EDIT:CARRier:STOP
- class CarrierCls[source]
Carrier commands group definition. 8 total commands, 3 Subgroups, 3 group commands
- get_start() int [source]
# SCPI: [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STARt value: int = driver.source.bb.mccw.edit.carrier.get_start()
Defines the first/last carrier in the carrier range to which joint configuration applies.
- return
start: No help available
- get_state() bool [source]
# SCPI: [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STATe value: bool = driver.source.bb.mccw.edit.carrier.get_state()
Switches all the carriers in the selected carrier range on or off.
- return
state: 1| ON| 0| OFF
- get_stop() int [source]
# SCPI: [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STOP value: int = driver.source.bb.mccw.edit.carrier.get_stop()
Defines the first/last carrier in the carrier range to which joint configuration applies.
- return
stop: integer Range: 0 to 8191
- set_start(start: int) None [source]
# SCPI: [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STARt driver.source.bb.mccw.edit.carrier.set_start(start = 1)
Defines the first/last carrier in the carrier range to which joint configuration applies.
- param start
integer Range: 0 to 8191
- set_state(state: bool) None [source]
# SCPI: [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STATe driver.source.bb.mccw.edit.carrier.set_state(state = False)
Switches all the carriers in the selected carrier range on or off.
- param state
1| ON| 0| OFF
- set_stop(stop: int) None [source]
# SCPI: [SOURce<HW>]:BB:MCCW:EDIT:CARRier:STOP driver.source.bb.mccw.edit.carrier.set_stop(stop = 1)
Defines the first/last carrier in the carrier range to which joint configuration applies.
- param stop
integer Range: 0 to 8191
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.mccw.edit.carrier.clone()
Subgroups