Connection

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:BTYPe
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:DELay
CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:WHITening
class Connection[source]

Connection commands group definition. 92 total commands, 24 Sub-groups, 3 group commands

get_btype()RsCmwBluetoothSig.enums.BurstType[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:BTYPe
value: enums.BurstType = driver.configure.connection.get_btype()


    INTRO_CMD_HELP: Defines the Bluetooth burst type. The command is relevant for:

    - BR/EDR in test mode
    - LE in direct test mode

    :return: burst_type: BR | EDR | LE BR: 'Basic Rate' EDR: 'Enhanced Data Rate' LE: 'Low Energy'
get_delay()bool[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:DELay
value: bool = driver.configure.connection.get_delay()

No command help available

return

delay: No help available

get_whitening()bool[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:WHITening
value: bool = driver.configure.connection.get_whitening()

Sets whether the EUT has to transmit ACL packets scrambled with a particular data sequence in a loopback mode.

return

whitening: OFF | ON

set_btype(burst_type: RsCmwBluetoothSig.enums.BurstType)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:BTYPe
driver.configure.connection.set_btype(burst_type = enums.BurstType.BR)


    INTRO_CMD_HELP: Defines the Bluetooth burst type. The command is relevant for:

    - BR/EDR in test mode
    - LE in direct test mode

    :param burst_type: BR | EDR | LE BR: 'Basic Rate' EDR: 'Enhanced Data Rate' LE: 'Low Energy'
set_delay(delay: bool)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:DELay
driver.configure.connection.set_delay(delay = False)

No command help available

param delay

No help available

set_whitening(whitening: bool)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:CONNection:WHITening
driver.configure.connection.set_whitening(whitening = False)

Sets whether the EUT has to transmit ACL packets scrambled with a particular data sequence in a loopback mode.

param whitening

OFF | ON

Cloning the Group

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

Subgroups