Ptype

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:SCO
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:ESCO
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:BRATe
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:EDRate
class Ptype[source]

Ptype commands group definition. 7 total commands, 1 Sub-groups, 4 group commands

get_brate()RsCmwBluetoothSig.enums.BrPacketType[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:BRATe
value: enums.BrPacketType = driver.configure.connection.packets.ptype.get_brate()

Sets the BR packet type.

return

packet_type: DH1 | DH3 | DH5 Data – high rate packet carrying information bytes plus a 16-bit CRC code, see table below.

get_edrate()RsCmwBluetoothSig.enums.EdrPacketType[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:EDRate
value: enums.EdrPacketType = driver.configure.connection.packets.ptype.get_edrate()

Sets the EDR packet type.

return

packet_type: E21P | E23P | E25P | E31P | E33P | E35P Data – high rate packet carrying information bytes plus a 16-bit CRC code, see table below.

get_esco()RsCmwBluetoothSig.enums.PacketTypeEsco[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:ESCO
value: enums.PacketTypeEsco = driver.configure.connection.packets.ptype.get_esco()

Specifies the type of the LE test packet. Commands for uncoded LE 1M PHY (..:LE1M..) and LE 2M PHY (..:LE2M.. ) are available.

return

packet_type: RFPHytest | RFCTe ‘RFPHytest’: test packet according to Bluetooth specification up to version 5.0 ‘RFCTe’: test packet with CTE according to Bluetooth specification version 5.1

get_sco()RsCmwBluetoothSig.enums.PacketTypeSco[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:SCO
value: enums.PacketTypeSco = driver.configure.connection.packets.ptype.get_sco()

Specifies the type of the LE test packet. Commands for uncoded LE 1M PHY (..:LE1M..) and LE 2M PHY (..:LE2M.. ) are available.

return

packet_type: RFPHytest | RFCTe ‘RFPHytest’: test packet according to Bluetooth specification up to version 5.0 ‘RFCTe’: test packet with CTE according to Bluetooth specification version 5.1

set_brate(packet_type: RsCmwBluetoothSig.enums.BrPacketType)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:BRATe
driver.configure.connection.packets.ptype.set_brate(packet_type = enums.BrPacketType.DH1)

Sets the BR packet type.

param packet_type

DH1 | DH3 | DH5 Data – high rate packet carrying information bytes plus a 16-bit CRC code, see table below.

set_edrate(packet_type: RsCmwBluetoothSig.enums.EdrPacketType)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:EDRate
driver.configure.connection.packets.ptype.set_edrate(packet_type = enums.EdrPacketType.E21P)

Sets the EDR packet type.

param packet_type

E21P | E23P | E25P | E31P | E33P | E35P Data – high rate packet carrying information bytes plus a 16-bit CRC code, see table below.

set_esco(packet_type: RsCmwBluetoothSig.enums.PacketTypeEsco)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:ESCO
driver.configure.connection.packets.ptype.set_esco(packet_type = enums.PacketTypeEsco._2EV3)

Specifies the type of the LE test packet. Commands for uncoded LE 1M PHY (..:LE1M..) and LE 2M PHY (..:LE2M.. ) are available.

param packet_type

RFPHytest | RFCTe ‘RFPHytest’: test packet according to Bluetooth specification up to version 5.0 ‘RFCTe’: test packet with CTE according to Bluetooth specification version 5.1

set_sco(packet_type: RsCmwBluetoothSig.enums.PacketTypeSco)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PTYPe:SCO
driver.configure.connection.packets.ptype.set_sco(packet_type = enums.PacketTypeSco.HV1)

Specifies the type of the LE test packet. Commands for uncoded LE 1M PHY (..:LE1M..) and LE 2M PHY (..:LE2M.. ) are available.

param packet_type

RFPHytest | RFCTe ‘RFPHytest’: test packet according to Bluetooth specification up to version 5.0 ‘RFCTe’: test packet with CTE according to Bluetooth specification version 5.1

Cloning the Group

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

Subgroups