PacketLength

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PLENgth:BRATe
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PLENgth:EDRate
class PacketLength[source]

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

get_brate()List[int][source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PLENgth:BRATe
value: List[int] = driver.configure.connection.packets.packetLength.get_brate()

Sets the payload length for BR test mode.

return

payload_length: numeric Range: Three values, see table below

get_edrate()List[int][source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PLENgth:EDRate
value: List[int] = driver.configure.connection.packets.packetLength.get_edrate()

Sets the payload length for EDR test mode.

return

payload_length: numeric Range: Six values, see table below

set_brate(payload_length: List[int])None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PLENgth:BRATe
driver.configure.connection.packets.packetLength.set_brate(payload_length = [1, 2, 3])

Sets the payload length for BR test mode.

param payload_length

numeric Range: Three values, see table below

set_edrate(payload_length: List[int])None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:PACKets:PLENgth:EDRate
driver.configure.connection.packets.packetLength.set_edrate(payload_length = [1, 2, 3])

Sets the payload length for EDR test mode.

param payload_length

numeric Range: Six values, see table below

Cloning the Group

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

Subgroups