Results

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:RESults
class ResultsCls[source]

Results commands group definition. 7 total commands, 6 Subgroups, 1 group commands

class ResultsStruct[source]

Response structure. Fields:

  • Enable_Mod_Scalar: bool: OFF | ON Enable/disable statistical modulation results

  • Enable_Pow_Scalar: bool: OFF | ON Enable/disable statistical power results

  • Enable_Spec_Obw: bool: OFF | ON Enable/disable the spectrum 20 dB bandwidth results (BR)

  • Enable_Spec_Acp: bool: OFF | ON Enable/disable the spectrum ACP results (BR, LE)

  • Enable_Spec_Gat_Acp: bool: OFF | ON Enable/disable the spectrum gated ACP results (EDR)

get(segment=Segment.Default) ResultsStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:RESults
value: ResultsStruct = driver.configure.multiEval.listPy.segment.results.get(segment = repcap.Segment.Default)

Enables or disables the evaluation of the particular measurement type in the segment.

param segment:

optional repeated capability selector. Default value: S1 (settable in the interface ‘Segment’)

return:

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

set(enable_mod_scalar: bool, enable_pow_scalar: bool, enable_spec_obw: bool, enable_spec_acp: bool, enable_spec_gat_acp: bool, segment=Segment.Default) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIST:SEGMent<nr>:RESults
driver.configure.multiEval.listPy.segment.results.set(enable_mod_scalar = False, enable_pow_scalar = False, enable_spec_obw = False, enable_spec_acp = False, enable_spec_gat_acp = False, segment = repcap.Segment.Default)

Enables or disables the evaluation of the particular measurement type in the segment.

param enable_mod_scalar:

OFF | ON Enable/disable statistical modulation results

param enable_pow_scalar:

OFF | ON Enable/disable statistical power results

param enable_spec_obw:

OFF | ON Enable/disable the spectrum 20 dB bandwidth results (BR)

param enable_spec_acp:

OFF | ON Enable/disable the spectrum ACP results (BR, LE)

param enable_spec_gat_acp:

OFF | ON Enable/disable the spectrum gated ACP results (EDR)

param segment:

optional repeated capability selector. Default value: S1 (settable in the interface ‘Segment’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.listPy.segment.results.clone()

Subgroups