Block

SCPI Command :

[CONFigure]:SIGNaling:TMODe:BLOCk
class BlockCls[source]

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

class BlockStruct[source]

Response structure. Fields:

  • Enable: bool: Enable / disable the beamlock function.

  • Test_Function: enums.TestFunction: RX: Beamlock for UE receiver beams. TX: Beamlock for UE transmitter beams. RXTX: Beamlock for UE receiver and transmitter beams.

get() BlockStruct[source]
# SCPI: [CONFigure]:SIGNaling:TMODe:BLOCk
value: BlockStruct = driver.configure.signaling.tmode.block.get()

Enables or disables the beamlock function of the UE and selects the direction for enabled beamlock.

return:

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

set(enable: bool, test_function: TestFunction = None) None[source]
# SCPI: [CONFigure]:SIGNaling:TMODe:BLOCk
driver.configure.signaling.tmode.block.set(enable = False, test_function = enums.TestFunction.RX)

Enables or disables the beamlock function of the UE and selects the direction for enabled beamlock.

param enable:

Enable / disable the beamlock function.

param test_function:

RX: Beamlock for UE receiver beams. TX: Beamlock for UE transmitter beams. RXTX: Beamlock for UE receiver and transmitter beams.