Barred

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:BARRed
class BarredCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Enable: bool: ON: cell barred OFF: cell not barred

  • Ifri_Present: bool: ‘intraFreqReselectionRedCap-r17’ = ‘allowed’

  • One_Rx_Barred: bool: ‘cellBarredRedCap1Rx-r17’ = ‘barred’

  • Two_Rx_Barred: bool: ‘cellBarredRedCap2Rx-r17’ = ‘barred’

  • Half_Duplex: bool: ‘halfDuplexRedCapAllowed-r17’ = ‘false’

class SetStruct[source]

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

  • Cell_Name: str: No parameter help available

  • Enable: bool: ON: cell barred OFF: cell not barred

  • Ifri_Present: bool: Optional setting parameter. ‘intraFreqReselectionRedCap-r17’ = ‘allowed’

  • One_Rx_Barred: bool: Optional setting parameter. ‘cellBarredRedCap1Rx-r17’ = ‘barred’

  • Two_Rx_Barred: bool: Optional setting parameter. ‘cellBarredRedCap2Rx-r17’ = ‘barred’

  • Half_Duplex: bool: Optional setting parameter. ‘halfDuplexRedCapAllowed-r17’ = ‘false’

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:BARRed
value: GetStruct = driver.configure.signaling.nradio.cell.barred.get(cell_name = 'abc')

Specifies whether the cell is barred.

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:NRADio:CELL:BARRed
structure = driver.configure.signaling.nradio.cell.barred.SetStruct()
structure.Cell_Name: str = 'abc'
structure.Enable: bool = False
structure.Ifri_Present: bool = False
structure.One_Rx_Barred: bool = False
structure.Two_Rx_Barred: bool = False
structure.Half_Duplex: bool = False
driver.configure.signaling.nradio.cell.barred.set(structure)

Specifies whether the cell is barred.

param structure:

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