Ptype

SCPI Commands :

CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PTYPe:EDRate
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PTYPe:BRATe
class PtypeCls[source]

Ptype commands group definition. 10 total commands, 2 Subgroups, 2 group commands

get_brate() BrPacketType[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PTYPe:BRATe
value: enums.BrPacketType = driver.configure.inputSignal.ptype.get_brate()

Specifies the BR packet type of the measured signal. For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PTYPe:BRATe.

return:

packet_type: DH1 | DH3 | DH5

get_edrate() EdrPacketType[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PTYPe:EDRate
value: enums.EdrPacketType = driver.configure.inputSignal.ptype.get_edrate()

Specifies the EDR packet type of the measured signal. For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PTYPe:EDRate.

return:

packet_type: E21P | E23P | E25P | E31P | E33P | E35P 2-DH1, 2-DH3, 2-DH5, 3-DH1, 3-DH3, or 3-DH5 packets

set_brate(packet_type: BrPacketType) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PTYPe:BRATe
driver.configure.inputSignal.ptype.set_brate(packet_type = enums.BrPacketType.DH1)

Specifies the BR packet type of the measured signal. For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PTYPe:BRATe.

param packet_type:

DH1 | DH3 | DH5

set_edrate(packet_type: EdrPacketType) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PTYPe:EDRate
driver.configure.inputSignal.ptype.set_edrate(packet_type = enums.EdrPacketType.E21P)

Specifies the EDR packet type of the measured signal. For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PTYPe:EDRate.

param packet_type:

E21P | E23P | E25P | E31P | E33P | E35P 2-DH1, 2-DH3, 2-DH5, 3-DH1, 3-DH3, or 3-DH5 packets

Cloning the Group

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

Subgroups