Ssb

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:BEAM:FRECovery:UDEFined:SSB
class SsbCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Ssb_Block: List[int]: SSB index

  • Candidate: List[bool]: The SSB with index SSBBlock is a candidate (ON) or not (OFF) .

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:BEAM:FRECovery:UDEFined:SSB
value: GetStruct = driver.configure.signaling.nradio.cell.beam.frecovery.userDefined.ssb.get(cell_name = 'abc')

Specifies the SSB beam portion of a user-defined candidate list for beam failure recovery. See also [CONFigure:]SIGNaling:NRADio:CELL:BEAM:FRECovery:MODE.

param cell_name:

No help available

return:

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

set(cell_name: str, ssb_block: List[int], candidate: List[bool]) None[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:BEAM:FRECovery:UDEFined:SSB
driver.configure.signaling.nradio.cell.beam.frecovery.userDefined.ssb.set(cell_name = 'abc', ssb_block = [1, 2, 3], candidate = [True, False, True])

Specifies the SSB beam portion of a user-defined candidate list for beam failure recovery. See also [CONFigure:]SIGNaling:NRADio:CELL:BEAM:FRECovery:MODE.

param cell_name:

No help available

param ssb_block:

SSB index

param candidate:

The SSB with index SSBBlock is a candidate (ON) or not (OFF) .