Carrier

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:CARRier:SETTing
CONFigure:EVDO:SIGNaling<Instance>:CARRier:CHANnel
CONFigure:EVDO:SIGNaling<Instance>:CARRier:FLFRequency
CONFigure:EVDO:SIGNaling<Instance>:CARRier:RLFRequency
class Carrier[source]

Carrier commands group definition. 6 total commands, 1 Sub-groups, 4 group commands

get_channel()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:CARRier:CHANnel
value: int = driver.configure.carrier.get_channel()

Sets/gets the channel for a carrier in the sector implemented by the signaling application. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command.

return

carrier_channel: The range of possible channels depends on the selected band class. The values below are for band class BC0 (US-Cellular) . For an overview, see ‘Band Classes’. Range: 1 to 799, 991 to 1323

get_fl_frequency()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:CARRier:FLFRequency
value: int = driver.configure.carrier.get_fl_frequency()

Gets the forward link frequency for a carrier in the cell implemented by the signaling application. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. This frequency is determined by the cell’s main carrier channel and the related carrier’s channel offset.

return

cfwd_link_freq: Range: 100 MHz to 6.1 GHz

get_rl_frequency()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:CARRier:RLFRequency
value: int = driver.configure.carrier.get_rl_frequency()

Gets the reverse link frequency for a carrier in the cell implemented by the signaling application. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command. This frequency is determined by the cell’s main carrier channel and the related carrier’s channel offset.

return

crev_link_freq: Range: 100 MHz to 6.1 GHz

get_setting()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:CARRier:SETTing
value: int = driver.configure.carrier.get_setting()

Sets/gets the carrier to which subsequent carrier-related commands apply.

return

set_carrier: Range: 0 to 2

set_channel(carrier_channel: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:CARRier:CHANnel
driver.configure.carrier.set_channel(carrier_channel = 1)

Sets/gets the channel for a carrier in the sector implemented by the signaling application. Preselect the related carrier using the method RsCmwEvdoSig.Configure.Carrier.setting command.

param carrier_channel

The range of possible channels depends on the selected band class. The values below are for band class BC0 (US-Cellular) . For an overview, see ‘Band Classes’. Range: 1 to 799, 991 to 1323

set_setting(set_carrier: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:CARRier:SETTing
driver.configure.carrier.set_setting(set_carrier = 1)

Sets/gets the carrier to which subsequent carrier-related commands apply.

param set_carrier

Range: 0 to 2

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.carrier.clone()

Subgroups