Step

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SEARch:STEP:BREDr
CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SEARch:STEP:LENergy
class Step[source]

Step commands group definition. 4 total commands, 2 Sub-groups, 2 group commands

get_bredr()float[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SEARch:STEP:BREDr
value: float or bool = driver.configure.rxQuality.search.step.get_bredr()

Specifies the power step for the BR/EDR search iteration of BER search measurements.

return

level_step: numeric Range: 0.01 dBm to 5 dBm, Unit: dB

get_low_energy()float[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SEARch:STEP:LENergy
value: float or bool = driver.configure.rxQuality.search.step.get_low_energy()
Specifies the power step for the LE search iteration of PER search measurements.

INTRO_CMD_HELP: Refer also to the following commands:

  • For LE connection tests (normal mode) , command for LE 1M PHY - uncoded (..:NMODe:LENergy:LE1M..) is available.

  • For LE test mode, command ..:SEARch:STEP:TMODe:LENergy.. is available.

  • For LE RF tests (direct test mode) , command ..:SEARch:STEP:LENergy.. is available.

return

level_step: numeric Range: 0.01 dB to 5 dB, Unit: dB

set_bredr(level_step: float)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SEARch:STEP:BREDr
driver.configure.rxQuality.search.step.set_bredr(level_step = 1.0)

Specifies the power step for the BR/EDR search iteration of BER search measurements.

param level_step

numeric Range: 0.01 dBm to 5 dBm, Unit: dB

set_low_energy(level_step: float)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SEARch:STEP:LENergy
driver.configure.rxQuality.search.step.set_low_energy(level_step = 1.0)
Specifies the power step for the LE search iteration of PER search measurements.

INTRO_CMD_HELP: Refer also to the following commands:

  • For LE connection tests (normal mode) , command for LE 1M PHY - uncoded (..:NMODe:LENergy:LE1M..) is available.

  • For LE test mode, command ..:SEARch:STEP:TMODe:LENergy.. is available.

  • For LE RF tests (direct test mode) , command ..:SEARch:STEP:LENergy.. is available.

param level_step

numeric Range: 0.01 dB to 5 dB, Unit: dB

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.rxQuality.search.step.clone()

Subgroups