All

SCPI Command :

[CONFigure]:SIGNaling:NRADio:CELL:BEAM:FOLLowing:ALL
class AllCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Enable: bool: Enables signaling of a change of the DL beam to the UE.

  • Follow_Mode: enums.ModeBfollow: OFF: No beam following AUTO: Beam selection based on UE measurement reports BLOCk: Beamlock configuration via BeamLockMode and Index

  • Beam_Lock_Mode: enums.Mode: Type of value to be used for target selection. SSBBeam: SSB beam index BINDex: beam index CSIRs: NZP CSI-RS resource ID

  • Index: int: Value of the type BeamLockMode, e.g. an SBB beam index value.

get(cell_name: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:BEAM:FOLLowing:ALL
value: GetStruct = driver.configure.signaling.nradio.cell.beam.following.all.get(cell_name = 'abc')

Configures all settings for DL beam following in a single command.

param cell_name:

No help available

return:

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

set(cell_name: str, enable: bool, follow_mode: ModeBfollow = None, beam_lock_mode: Mode = None, index: int = None) None[source]
# SCPI: [CONFigure]:SIGNaling:NRADio:CELL:BEAM:FOLLowing:ALL
driver.configure.signaling.nradio.cell.beam.following.all.set(cell_name = 'abc', enable = False, follow_mode = enums.ModeBfollow.AUTO, beam_lock_mode = enums.Mode.BINDex, index = 1)

Configures all settings for DL beam following in a single command.

param cell_name:

No help available

param enable:

Enables signaling of a change of the DL beam to the UE.

param follow_mode:

OFF: No beam following AUTO: Beam selection based on UE measurement reports BLOCk: Beamlock configuration via BeamLockMode and Index

param beam_lock_mode:

Type of value to be used for target selection. SSBBeam: SSB beam index BINDex: beam index CSIRs: NZP CSI-RS resource ID

param index:

Value of the type BeamLockMode, e.g. an SBB beam index value.