State

SCPI Commands

SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:LESignaling
SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:GFSK
SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:DQPSk
SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:DPSK
SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe
class State[source]

State commands group definition. 5 total commands, 0 Sub-groups, 5 group commands

class DpskStruct[source]

Structure for reading output parameters. Fields:

  • Power_Change: enums.PowerChange: NNE | UP | DOWN | MAX NNE: none UP: power up command accepted DOWN: power down command accepted MAX: maximum power command accepted

  • Power_Min_Max: enums.PowerMinMax: NOTS | CHANged | MAX | MIN | NNM NOTS: not supported (command not accepted by the EUT) CHANged: changed one step MAX: max power reached MIN: min power reached NNM: no new message

class DqpskStruct[source]

Structure for reading output parameters. Fields:

  • Power_Change: enums.PowerChange: NNE | UP | DOWN | MAX NNE: none UP: power up command accepted DOWN: power down command accepted MAX: maximum power command accepted

  • Power_Min_Max: enums.PowerMinMax: NOTS | CHANged | MAX | MIN | NNM NOTS: not supported (command not accepted by the EUT) CHANged: changed one step MAX: max power reached MIN: min power reached NNM: no new message

class GfskStruct[source]

Structure for reading output parameters. Fields:

  • Power_Change: enums.PowerChange: NNE | UP | DOWN | MAX NNE: none UP: power up command accepted DOWN: power down command accepted MAX: maximum power command accepted

  • Power_Min_Max: enums.PowerMinMax: NOTS | CHANged | MAX | MIN | NNM NOTS: not supported (command not accepted by the EUT) CHANged: changed one step MAX: max power reached MIN: min power reached NNM: no new message

class LeSignalingStruct[source]

Structure for reading output parameters. Fields:

  • Pow_Flag: enums.PowerFlag: NONE | MIN | MAX NONE: no new message MIN: minimum power command accepted MAX: maximum power command accepted

  • Pow_Delta: int: decimal Returns the power difference before and after the command execution Range: -100 dB to +100 dB

  • Current_Power: int: decimal Returns the actual Tx power level of the DUT Range: -200 dBm to +100 dBm

  • Eut_State: enums.EutState: FAIL | OK Checks the command execution.

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Pow_Change_Gfsk: enums.PowerChange: NNE | UP | DOWN | MAX NNE: none UP: power up command accepted DOWN: power down command accepted MAX: maximum power command accepted

  • Pow_Min_Max_Gfsk: enums.PowerMinMax: NOTS | CHANged | MAX | MIN | NNM NOTS: not supported (command not accepted by the EUT) CHANged: changed one step MAX: max power reached MIN: min power reached NNM: no new message

  • Pow_Change_Dqpsk: enums.PowerChange: NNE | UP | DOWN | MAX

  • Pow_Min_Max_Dqpsk: enums.PowerMinMax: NOTS | CHANged | MAX | MIN | NNM

  • Pow_Change_Dpsk: enums.PowerChange: NNE | UP | DOWN | MAX

  • Pow_Min_Max_Dpsk: enums.PowerMinMax: NOTS | CHANged | MAX | MIN | NNM

get_dpsk()DpskStruct[source]
# SCPI: SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:DPSK
value: DpskStruct = driver.sense.eut.powerControl.state.get_dpsk()

Displays the EUT responses to the enhanced power control state commands for GFSK-modulated BR and π/4 DQPSK or 8DPSK-modulated EDR packets. The modulation is indicated by the last mnemonic.

return

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

get_dqpsk()DqpskStruct[source]
# SCPI: SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:DQPSk
value: DqpskStruct = driver.sense.eut.powerControl.state.get_dqpsk()

Displays the EUT responses to the enhanced power control state commands for GFSK-modulated BR and π/4 DQPSK or 8DPSK-modulated EDR packets. The modulation is indicated by the last mnemonic.

return

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

get_gfsk()GfskStruct[source]
# SCPI: SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:GFSK
value: GfskStruct = driver.sense.eut.powerControl.state.get_gfsk()

Displays the EUT responses to the enhanced power control state commands for GFSK-modulated BR and π/4 DQPSK or 8DPSK-modulated EDR packets. The modulation is indicated by the last mnemonic.

return

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

get_le_signaling()LeSignalingStruct[source]
# SCPI: SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe:LESignaling
value: LeSignalingStruct = driver.sense.eut.powerControl.state.get_le_signaling()

Displays the DUT’s responses to the power control state commands for low energy.

return

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

get_value()ValueStruct[source]
# SCPI: SENSe:BLUetooth:SIGNaling<Instance>:EUT:PCONtrol:STATe
value: ValueStruct = driver.sense.eut.powerControl.state.get_value()

Displays the EUT responses to the enhanced power control state commands for GFSK-modulated BR and π/4 DQPSK and 8DPSK-modulated EDR packets.

return

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