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.bluetooth.measurement.inputSignal.pattern.get_value()

The command specifies the data pattern type that the DUT transmits as user payload data on its BR packets.

return:

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

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

The command specifies the data pattern type that the DUT transmits as user payload data on its BR packets.

param pattern_type:

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

Cloning the Group

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

Subgroups