Plength

SCPI Commands :

CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:BRATe
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:EDRate
class PlengthCls[source]

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

get_brate() List[int][source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:BRATe
value: List[int] = driver.configure.inputSignal.plength.get_brate()

Specifies the number of bytes (octets) in the payload data of the measured BR signal. The range of values depends on the packet type (method RsCmwBluetoothMeas.Configure.InputSignal.Ptype.brate) . The command requires 3 comma-separated parameters, one for each BR packet type (order: DH1, DH3, DH5) . For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PLENgth:BRATe.

return:

payload_length: numeric 3 payload lengths for BR packets Range: 0 to 27 (DH1) , 0 to 183 (DH3) , 0 to 339 (DH5)

get_edrate() List[int][source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:EDRate
value: List[int] = driver.configure.inputSignal.plength.get_edrate()

Specifies the number of bytes (octets) in the payload data of the measured EDR signal. The range of values depends on the packet type (method RsCmwBluetoothMeas.Configure.InputSignal.Ptype.edrate) . The command requires 6 comma-separated parameters, one for each EDR packet type (order: 2-DH1, 2-DH3, 2-DH5, 3-DH1, 3-DH3, 3-DH5) . For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PLENgth:EDRate.

return:

payload_length: numeric 6 payload lengths for EDR packets Range: 0 to 54 (2-DH1) , 0 to 367 (2-DH3) , 0 to 679 (2-DH5) , 0 to 83 (3-DH1) , 0 to 552 (3-DH3) , 0 to 1021 (3-DH5)

set_brate(payload_length: List[int]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:BRATe
driver.configure.inputSignal.plength.set_brate(payload_length = [1, 2, 3])

Specifies the number of bytes (octets) in the payload data of the measured BR signal. The range of values depends on the packet type (method RsCmwBluetoothMeas.Configure.InputSignal.Ptype.brate) . The command requires 3 comma-separated parameters, one for each BR packet type (order: DH1, DH3, DH5) . For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PLENgth:BRATe.

param payload_length:

numeric 3 payload lengths for BR packets Range: 0 to 27 (DH1) , 0 to 183 (DH3) , 0 to 339 (DH5)

set_edrate(payload_length: List[int]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:EDRate
driver.configure.inputSignal.plength.set_edrate(payload_length = [1, 2, 3])

Specifies the number of bytes (octets) in the payload data of the measured EDR signal. The range of values depends on the packet type (method RsCmwBluetoothMeas.Configure.InputSignal.Ptype.edrate) . The command requires 6 comma-separated parameters, one for each EDR packet type (order: 2-DH1, 2-DH3, 2-DH5, 3-DH1, 3-DH3, 3-DH5) . For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:PACKets:PLENgth:EDRate.

param payload_length:

numeric 6 payload lengths for EDR packets Range: 0 to 54 (2-DH1) , 0 to 367 (2-DH3) , 0 to 679 (2-DH5) , 0 to 83 (3-DH1) , 0 to 552 (3-DH3) , 0 to 1021 (3-DH5)

Cloning the Group

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

Subgroups