Pattern

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PATTern
class PatternCls[source]

Pattern commands group definition. 4 total commands, 1 Subgroups, 1 group commands

get_value() DetectedPatternType[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PATTern
value: enums.DetectedPatternType = driver.configure.inputSignal.pattern.get_value()

Specifies the data pattern type that the EUT transmits as user payload data on its BR packets. The setting is not valid for EDR packets.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PATTern:BRATe

  • CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PATTern:EDRate

return:

pattern_type: P44 | P11 | OTHer | ALTernating P11: 10101010 P44: 11110000 OTHer: any pattern except P11, P44 ALTernating: the periodical change of the pattern P11 and P44

set_value(pattern_type: DetectedPatternType) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PATTern
driver.configure.inputSignal.pattern.set_value(pattern_type = enums.DetectedPatternType.ALTernating)

Specifies the data pattern type that the EUT transmits as user payload data on its BR packets. The setting is not valid for EDR packets.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PATTern:BRATe

  • CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PATTern:EDRate

param pattern_type:

P44 | P11 | OTHer | ALTernating P11: 10101010 P44: 11110000 OTHer: any pattern except P11, P44 ALTernating: the periodical change of the pattern P11 and P44

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.inputSignal.pattern.clone()

Subgroups