Pattern

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PATTern:BRATe
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PATTern:EDRate
class Pattern[source]

Pattern commands group definition. 5 total commands, 1 Sub-groups, 2 group commands

get_brate()RsCmwBluetoothSig.enums.LeRangePaternType[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PATTern:BRATe
value: enums.LeRangePaternType = driver.configure.connection.packets.pattern.get_brate()
Select the bit pattern to be used for tests.

INTRO_CMD_HELP: Defines the Bluetooth burst type. The command is relevant for:

  • Commands for test mode classic: For BR (…:BRATe…) , EDR (…:EDRate…)

  • Commands for LE direct test mode: For LE 1M PHY (…:LE1M…) , LE 2M PHY (…:LE2M…)

  • Commands for LE test mode: ..:TCONnection:..

return

pattern_type: ALL0 | ALL1 | P11 | P44 | PRBS9 | ALT ALL0: 00000000 ALL1: 11111111 P11: 10101010 P44: 11110000 PRBS9: pseudo-random bit sequences of a length of 9 bits (transmission of identical packet series) ALT: the periodical alternation of the pattern P11 and P44

get_edrate()RsCmwBluetoothSig.enums.LeRangePaternType[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PATTern:EDRate
value: enums.LeRangePaternType = driver.configure.connection.packets.pattern.get_edrate()
Select the bit pattern to be used for tests.

INTRO_CMD_HELP: Defines the Bluetooth burst type. The command is relevant for:

  • Commands for test mode classic: For BR (…:BRATe…) , EDR (…:EDRate…)

  • Commands for LE direct test mode: For LE 1M PHY (…:LE1M…) , LE 2M PHY (…:LE2M…)

  • Commands for LE test mode: ..:TCONnection:..

return

pattern_type: ALL0 | ALL1 | P11 | P44 | PRBS9 | ALT ALL0: 00000000 ALL1: 11111111 P11: 10101010 P44: 11110000 PRBS9: pseudo-random bit sequences of a length of 9 bits (transmission of identical packet series) ALT: the periodical alternation of the pattern P11 and P44

set_brate(pattern_type: RsCmwBluetoothSig.enums.LeRangePaternType)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PATTern:BRATe
driver.configure.connection.packets.pattern.set_brate(pattern_type = enums.LeRangePaternType.ALL0)
Select the bit pattern to be used for tests.

INTRO_CMD_HELP: Defines the Bluetooth burst type. The command is relevant for:

  • Commands for test mode classic: For BR (…:BRATe…) , EDR (…:EDRate…)

  • Commands for LE direct test mode: For LE 1M PHY (…:LE1M…) , LE 2M PHY (…:LE2M…)

  • Commands for LE test mode: ..:TCONnection:..

param pattern_type

ALL0 | ALL1 | P11 | P44 | PRBS9 | ALT ALL0: 00000000 ALL1: 11111111 P11: 10101010 P44: 11110000 PRBS9: pseudo-random bit sequences of a length of 9 bits (transmission of identical packet series) ALT: the periodical alternation of the pattern P11 and P44

set_edrate(pattern_type: RsCmwBluetoothSig.enums.LeRangePaternType)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PATTern:EDRate
driver.configure.connection.packets.pattern.set_edrate(pattern_type = enums.LeRangePaternType.ALL0)
Select the bit pattern to be used for tests.

INTRO_CMD_HELP: Defines the Bluetooth burst type. The command is relevant for:

  • Commands for test mode classic: For BR (…:BRATe…) , EDR (…:EDRate…)

  • Commands for LE direct test mode: For LE 1M PHY (…:LE1M…) , LE 2M PHY (…:LE2M…)

  • Commands for LE test mode: ..:TCONnection:..

param pattern_type

ALL0 | ALL1 | P11 | P44 | PRBS9 | ALT ALL0: 00000000 ALL1: 11111111 P11: 10101010 P44: 11110000 PRBS9: pseudo-random bit sequences of a length of 9 bits (transmission of identical packet series) ALT: the periodical alternation of the pattern P11 and P44

Cloning the Group

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

Subgroups