Combined

SCPI Command :

[CONFigure]:SIGNaling:LTE:CELL:RFSettings:COMBined
class CombinedCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Duplex_Mode: enums.DuplexModeB: No parameter help available

  • Fbi: int: Frequency band indicator.

  • Dl_Channel: int: No parameter help available

  • Dl_Bandwidth: enums.UlBandwidth: Bxyz means xy.z MHz.

  • Ul_Channel: int: No parameter help available

  • Ul_Bandwidth: enums.UlBandwidth: Bxyz means xy.z MHz.

class SetStruct[source]

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

  • Cell_Name: str: No parameter help available

  • Duplex_Mode: enums.DuplexModeB: No parameter help available

  • Fbi: int: Optional setting parameter. Frequency band indicator.

  • Dl_Channel: int: No parameter help available

  • Dl_Bandwidth: enums.UlBandwidth: Optional setting parameter. Bxyz means xy.z MHz.

  • Ul_Channel: int: No parameter help available

  • Ul_Bandwidth: enums.UlBandwidth: Optional setting parameter. Bxyz means xy.z MHz.

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:RFSettings:COMBined
value: GetStruct = driver.configure.signaling.lte.cell.rfSettings.combined.get(cell_name = 'abc')

Defines the duplex mode, the frequency band, the channel numbers and the bandwidths.

param cell_name:

No help available

return:

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

set(structure: SetStruct) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:CELL:RFSettings:COMBined
structure = driver.configure.signaling.lte.cell.rfSettings.combined.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Duplex_Mode: enums.DuplexModeB = enums.DuplexModeB.FDD
structure.Fbi: int = 1
structure.Dl_Channel: int = 1
structure.Dl_Bandwidth: enums.UlBandwidth = enums.UlBandwidth.B014
structure.Ul_Channel: int = 1
structure.Ul_Bandwidth: enums.UlBandwidth = enums.UlBandwidth.B014
driver.configure.signaling.lte.cell.rfSettings.combined.set(structure)

Defines the duplex mode, the frequency band, the channel numbers and the bandwidths.

param structure:

for set value, see the help for SetStruct structure arguments.