All

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:RFSettings:ALL:BWCHannel
class AllCls[source]

All commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class BwChannelStruct[source]

Structure for setting input parameters. Contains optional set arguments. Fields:

  • Band_Pcc: enums.OperatingBandC: FDD: UDEFined | OB1 | … | OB28 | OB30 | OB31 | OB65 | OB66 | OB68 | OB70 | … | OB74 | OB85 | OB87 | OB88 TDD: UDEFined | OB33 | … | OB46 | OB48 | … | OB53 | OB250 Selects the PCC operating band

  • Dl_Channel_Pcc: int: decimal PCC DL channel number Range: depends on operating band

  • Bandwidth_Pcc: enums.Bandwidth: B014 | B030 | B050 | B100 | B150 | B200 PCC cell bandwidth B014: 1.4 MHz B030: 3 MHz B050: 5 MHz B100: 10 MHz B150: 15 MHz B200: 20 MHz

  • Band_Scc_1: enums.OperatingBandC: Optional setting parameter. FDD: UDEFined | OB1 | … | OB32 | OB65 | … | OB76 | OB85 | OB87 | OB88 | OB252 | OB255 TDD: UDEFined | OB33 | … | OB46 | OB48 | … | OB53 | OB250 SCC1 operating band

  • Dl_Channel_Scc_1: int: Optional setting parameter. decimal SCC1 DL channel number Range: depends on operating band

  • Bandwidth_Scc_1: enums.Bandwidth: Optional setting parameter. B014 | B030 | B050 | B100 | B150 | B200 SCC1 cell bandwidth

  • Band_Scc_2: enums.OperatingBandC: Optional setting parameter. FDD: UDEFined | OB1 | … | OB32 | OB65 | … | OB76 | OB85 | OB87 | OB88 | OB252 | OB255 TDD: UDEFined | OB33 | … | OB46 | OB48 | … | OB53 | OB250 SCC2 operating band

  • Dl_Channel_Scc_2: int: Optional setting parameter. decimal SCC2 DL channel number Range: depends on operating band

  • Bandwidth_Scc_2: enums.Bandwidth: Optional setting parameter. B014 | B030 | B050 | B100 | B150 | B200 SCC2 cell bandwidth

  • Band_Scc_3: enums.OperatingBandC: Optional setting parameter. FDD: UDEFined | OB1 | … | OB32 | OB65 | … | OB76 | OB85 | OB87 | OB88 | OB252 | OB255 TDD: UDEFined | OB33 | … | OB46 | OB48 | … | OB53 | OB250 SCC3 operating band

  • Dl_Channel_Scc_3: int: Optional setting parameter. decimal SCC3 DL channel number Range: depends on operating band

  • Bandwidth_Scc_3: enums.Bandwidth: Optional setting parameter. B014 | B030 | B050 | B100 | B150 | B200 SCC3 cell bandwidth

  • Band_Scc_4: enums.OperatingBandC: Optional setting parameter. FDD: UDEFined | OB1 | … | OB32 | OB65 | … | OB76 | OB85 | OB87 | OB88 | OB252 | OB255 TDD: UDEFined | OB33 | … | OB46 | OB48 | … | OB53 | OB250 SCC4 operating band

  • Dl_Channel_Scc_4: int: Optional setting parameter. decimal SCC4 DL channel number Range: depends on operating band

  • Bandwidth_Scc_4: enums.Bandwidth: Optional setting parameter. B014 | B030 | B050 | B100 | B150 | B200 SCC4 cell bandwidth

get_bw_channel() BwChannelStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings:ALL:BWCHannel
value: BwChannelStruct = driver.configure.rfSettings.all.get_bw_channel()

Selects the operating band, the downlink channel number and the cell bandwidth for the PCC and optionally for the SCCs. A query returns only the component carriers that are supported by the current scenario.

return:

structure: for return value, see the help for BwChannelStruct structure arguments.

set_bw_channel(value: BwChannelStruct) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings:ALL:BWCHannel
structure = driver.configure.rfSettings.all.BwChannelStruct()
structure.Band_Pcc: enums.OperatingBandC = enums.OperatingBandC.OB1
structure.Dl_Channel_Pcc: int = 1
structure.Bandwidth_Pcc: enums.Bandwidth = enums.Bandwidth.B014
structure.Band_Scc_1: enums.OperatingBandC = enums.OperatingBandC.OB1
structure.Dl_Channel_Scc_1: int = 1
structure.Bandwidth_Scc_1: enums.Bandwidth = enums.Bandwidth.B014
structure.Band_Scc_2: enums.OperatingBandC = enums.OperatingBandC.OB1
structure.Dl_Channel_Scc_2: int = 1
structure.Bandwidth_Scc_2: enums.Bandwidth = enums.Bandwidth.B014
structure.Band_Scc_3: enums.OperatingBandC = enums.OperatingBandC.OB1
structure.Dl_Channel_Scc_3: int = 1
structure.Bandwidth_Scc_3: enums.Bandwidth = enums.Bandwidth.B014
structure.Band_Scc_4: enums.OperatingBandC = enums.OperatingBandC.OB1
structure.Dl_Channel_Scc_4: int = 1
structure.Bandwidth_Scc_4: enums.Bandwidth = enums.Bandwidth.B014
driver.configure.rfSettings.all.set_bw_channel(value = structure)

Selects the operating band, the downlink channel number and the cell bandwidth for the PCC and optionally for the SCCs. A query returns only the component carriers that are supported by the current scenario.

param value:

see the help for BwChannelStruct structure arguments.