Current

SCPI Commands :

READ:BLUetooth:MEASurement<Instance>:MEValuation:PENCoding:EDRate:CURRent
FETCh:BLUetooth:MEASurement<Instance>:MEValuation:PENCoding:EDRate:CURRent
CALCulate:BLUetooth:MEASurement<Instance>:MEValuation:PENCoding:EDRate:CURRent
class CurrentCls[source]

Current commands group definition. 4 total commands, 1 Subgroups, 3 group commands

class CalculateStruct[source]

Response structure. Fields:

  • Reliability: int: float ‘Reliability indicator’

  • Nominal_Power: float or bool: float Average power during the carrier-on state Range: -128 dBm to 30 dBm , Unit: dBm

  • Bit_Error_Rate: float or bool: float Number of bit errors in the received burst, as a percentage of the total number of bits received Range: 0 % to 100 %, Unit: %

  • Packets_0_Errors: float or bool: float Number of bit error free packets received, as a percentage of all the bursts received Range: 0 % to 100 %, Unit: %

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: No parameter help available

  • Bit_Error_Rate: float: No parameter help available

  • Packets_0_Errors: float: No parameter help available

  • Nominal_Power: float: No parameter help available

class ReadStruct[source]

Response structure. Fields:

  • Reliability: int: float ‘Reliability indicator’

  • Nominal_Power: float: float Average power during the carrier-on state Range: -128 dBm to 30 dBm , Unit: dBm

  • Bit_Error_Rate: float: float Number of bit errors in the received burst, as a percentage of the total number of bits received Range: 0 % to 100 %, Unit: %

  • Packets_0_Errors: float: float Number of bit error free packets received, as a percentage of all the bursts received Range: 0 % to 100 %, Unit: %

calculate() CalculateStruct[source]
# SCPI: CALCulate:BLUetooth:MEASurement<Instance>:MEValuation:PENCoding:EDRate:CURRent
value: CalculateStruct = driver.multiEval.pencoding.edrate.current.calculate()

Returns the ‘Differential Phase Encoding’ results for EDR packets (single values) . The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

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

fetch() FetchStruct[source]
# SCPI: FETCh:BLUetooth:MEASurement<Instance>:MEValuation:PENCoding:EDRate:CURRent
value: FetchStruct = driver.multiEval.pencoding.edrate.current.fetch()

No command help available

return:

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

read() ReadStruct[source]
# SCPI: READ:BLUetooth:MEASurement<Instance>:MEValuation:PENCoding:EDRate:CURRent
value: ReadStruct = driver.multiEval.pencoding.edrate.current.read()

Returns the ‘Differential Phase Encoding’ results for EDR packets (single values) . The values described below are returned by FETCh and READ commands. CALCulate commands return limit check results instead, one value for each result listed below.

return:

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.multiEval.pencoding.edrate.current.clone()

Subgroups