Mc
SCPI Commands :
[SOURce<HW>]:BB:EVDO:UP:MC:BCLass
[SOURce<HW>]:BB:EVDO:UP:MC:CDELay
[SOURce<HW>]:BB:EVDO:UP:MC:CFRequency
[SOURce<HW>]:BB:EVDO:UP:MC:STATe
- Commands in total: 7Subgroups: 1Direct child commands: 4
- get_bclass() EvdoBandClass[source]
# [SOURce<HW>]:BB:EVDO:UP:MC:BCLass value: enums.EvdoBandClass = driver.source.bb.evdo.up.mc.get_bclass()
Selects the band class for operation, as defined in 3GPP2 C.S0057-E. BC17 is supported in downlink only.
- Returns:
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]
# [SOURce<HW>]:BB:EVDO:UP:MC:CDELay value: float = driver.source.bb.evdo.up.mc.get_cdelay()
Sets a delay to each active carrier.
- Returns:
carrier_delay: float Range: 0 to 10E-6
- get_cfrequency() int[source]
# [SOURce<HW>]:BB:EVDO:UP:MC:CFRequency value: int = driver.source.bb.evdo.up.mc.get_cfrequency()
Queries the center frequency of the band resulting from the set active carriers.
- Returns:
center_frequency: integer
- get_state() bool[source]
# [SOURce<HW>]:BB:EVDO:UP:MC:STATe value: bool = driver.source.bb.evdo.up.mc.get_state()
Enables or disables multi-carrier operation.
- Returns:
state: 1 | ON | 0| OFF
- set_bclass(band_class: EvdoBandClass) None[source]
# [SOURce<HW>]:BB:EVDO:UP:MC:BCLass driver.source.bb.evdo.up.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.
- Parameters:
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]
# [SOURce<HW>]:BB:EVDO:UP:MC:CDELay driver.source.bb.evdo.up.mc.set_cdelay(carrier_delay = 1.0)
Sets a delay to each active carrier.
- Parameters:
carrier_delay – float Range: 0 to 10E-6
- set_state(state: bool) None[source]
# [SOURce<HW>]:BB:EVDO:UP:MC:STATe driver.source.bb.evdo.up.mc.set_state(state = False)
Enables or disables multi-carrier operation.
- Parameters:
state – 1 | ON | 0| OFF
Cloning the Group
# Create a copy of the original group, that exists independently
mc_copy = driver.source.bb.evdo.up.mc.clone()
Subgroups