Mc

SCPI Commands :

[SOURce<HW>]:BB:EVDO:DOWN:MC:BCLass
[SOURce<HW>]:BB:EVDO:DOWN:MC:CDELay
[SOURce<HW>]:BB:EVDO:DOWN:MC:CFRequency
[SOURce<HW>]:BB:EVDO:DOWN:MC:STATe
class McCls[source]

Mc commands group definition. 7 total commands, 1 Subgroups, 4 group commands

get_bclass() RsSmbv.enums.EvdoBandClass[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:BCLass
value: enums.EvdoBandClass = driver.source.bb.evdo.down.mc.get_bclass()

Selects the band class for operation, as defined in 3GPP2 C.S0057-E. BC17 is supported in downlink only.

return

band_class: BC0| BC1| BC2| BC3| BC4| BC5| BC6| BC7| BC8| BC9| BC10| BC11| BC12| BC13| BC14| BC15| BC16| BC17| BC18| BC19| BC20| BC21

get_cdelay() float[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:CDELay
value: float = driver.source.bb.evdo.down.mc.get_cdelay()

Sets a delay to each active carrier.

return

carrier_delay: float Range: 0 to 10E-6

get_cfrequency() int[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:CFRequency
value: int = driver.source.bb.evdo.down.mc.get_cfrequency()

Queries the center frequency of the band resulting from the set active carriers.

return

center_frequency: integer

get_state() bool[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:STATe
value: bool = driver.source.bb.evdo.down.mc.get_state()

Enables or disables multi-carrier operation.

return

state: 1| ON| 0| OFF

set_bclass(band_class: RsSmbv.enums.EvdoBandClass) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:BCLass
driver.source.bb.evdo.down.mc.set_bclass(band_class = enums.EvdoBandClass.BC0)

Selects the band class for operation, as defined in 3GPP2 C.S0057-E. BC17 is supported in downlink only.

param band_class

BC0| BC1| BC2| BC3| BC4| BC5| BC6| BC7| BC8| BC9| BC10| BC11| BC12| BC13| BC14| BC15| BC16| BC17| BC18| BC19| BC20| BC21

set_cdelay(carrier_delay: float) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:CDELay
driver.source.bb.evdo.down.mc.set_cdelay(carrier_delay = 1.0)

Sets a delay to each active carrier.

param carrier_delay

float Range: 0 to 10E-6

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:BB:EVDO:DOWN:MC:STATe
driver.source.bb.evdo.down.mc.set_state(state = False)

Enables or disables multi-carrier operation.

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups