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.bluetooth.measurement.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 RsCMPX_BluetoothMeas.Configure.Bluetooth.Measurement.InputSignal.Ptype.brate) . The command requires 3 comma-separated parameters, one for each BR packet type (order: DH1, DH3, DH5) .
- return:
payload_length: 3 payload lengths for BR packets
- get_edrate() List[int][source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:EDRate value: List[int] = driver.configure.bluetooth.measurement.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 RsCMPX_BluetoothMeas.Configure.Bluetooth.Measurement.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) .
- return:
payload_length: 6 payload lengths for EDR packets
- set_brate(payload_length: List[int]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:BRATe driver.configure.bluetooth.measurement.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 RsCMPX_BluetoothMeas.Configure.Bluetooth.Measurement.InputSignal.Ptype.brate) . The command requires 3 comma-separated parameters, one for each BR packet type (order: DH1, DH3, DH5) .
- param payload_length:
3 payload lengths for BR packets
- set_edrate(payload_length: List[int]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:PLENgth:EDRate driver.configure.bluetooth.measurement.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 RsCMPX_BluetoothMeas.Configure.Bluetooth.Measurement.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) .
- param payload_length:
6 payload lengths for EDR packets
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.bluetooth.measurement.inputSignal.plength.clone()
Subgroups