Bchannel
SCPI Command :
[CONFigure]:SIGNaling:LTE:CELL:RFSettings:BCHannel
- class BchannelCls[source]
Bchannel commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- class GetStruct[source]
Response structure. Fields:
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
Fbi: int: 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:BCHannel value: GetStruct = driver.configure.signaling.lte.cell.rfSettings.bchannel.get(cell_name = 'abc')
Defines 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:BCHannel structure = driver.configure.signaling.lte.cell.rfSettings.bchannel.SetStruct() structure.Cell_Name: str = 'abc' 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.bchannel.set(structure)
Defines the frequency band, the channel numbers and the bandwidths.
- param structure:
for set value, see the help for SetStruct structure arguments.