Enable

SCPI Command :

[CONFigure]:SIGNaling:MEASurement:BLER:ENABle
class EnableCls[source]

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

class EnableStruct[source]

Response structure. Fields:

  • Dl: bool: Measure DL BLER results (ON) or not (OFF) .

  • Ul: bool: Measure UL BLER results (ON) or not (OFF) .

get() EnableStruct[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:BLER:ENABle
value: EnableStruct = driver.configure.signaling.measurement.bler.enable.get()

Enables or disables the measurement of DL BLER and UL BLER results. This command affects BLER measurements started via a remote command. BLER measurements started via the GUI always deliver DL BLER and UL BLER results.

return:

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

set(dl: bool, ul: bool) None[source]
# SCPI: [CONFigure]:SIGNaling:MEASurement:BLER:ENABle
driver.configure.signaling.measurement.bler.enable.set(dl = False, ul = False)

Enables or disables the measurement of DL BLER and UL BLER results. This command affects BLER measurements started via a remote command. BLER measurements started via the GUI always deliver DL BLER and UL BLER results.

param dl:

Measure DL BLER results (ON) or not (OFF) .

param ul:

Measure UL BLER results (ON) or not (OFF) .