InputSignal

SCPI Commands

CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:DMODe
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BTYPe
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:NAP
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:UAP
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:LAP
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BDADdress
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:ASYNchronize
class InputSignal[source]

InputSignal commands group definition. 45 total commands, 11 Sub-groups, 7 group commands

get_asynchronize()bool[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:ASYNchronize
value: bool = driver.configure.inputSignal.get_asynchronize()

Disables / enables automatic synchronization to the captured signal for an unspecified Bluetooth device address.

return

auto_synch: OFF | ON

get_bd_address()str[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BDADdress
value: str = driver.configure.inputSignal.get_bd_address()

Specifies the Bluetooth device address that the R&S CMW expects the EUT to use to generate its access code.

return

bd_address: hex 12-digit hex number Range: #H0 to #HFFFFFFFFFFFF

get_btype()RsCmwBluetoothMeas.enums.BurstType[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BTYPe
value: enums.BurstType = driver.configure.inputSignal.get_btype()

Specifies the measured burst / packet type. For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:BTYPe.

return

burst_type: BR | EDR | LE BR: ‘Basic Rate’ EDR: ‘Enhanced Data Rate’ LE: ‘Low Energy’

get_dmode()RsCmwBluetoothMeas.enums.AutoManualMode[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:DMODe
value: enums.AutoManualMode = driver.configure.inputSignal.get_dmode()

Selects an algorithm which the R&S CMW uses to detect the measured burst.

return

detection_mode: MANual | AUTO

get_lap()str[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:LAP
value: str = driver.configure.inputSignal.get_lap()

Specifies the lower address part of the DUT’s Bluetooth device address.

return

bd_address_lap: hex Six-digit hex number Range: #H0 to #HFFFFFF

get_nap()str[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:NAP
value: str = driver.configure.inputSignal.get_nap()

Specifies the non-specific address part of the EUT’s Bluetooth device address.

return

bd_address_nap: hex Four-digit hex number Range: #H0 to #HFFFF

get_uap()str[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:UAP
value: str = driver.configure.inputSignal.get_uap()

Specifies the upper address part of the DUT’s Bluetooth device address.

return

bd_address_uap: hex Two-digit hex number Range: #H0 to #HFF

set_asynchronize(auto_synch: bool)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:ASYNchronize
driver.configure.inputSignal.set_asynchronize(auto_synch = False)

Disables / enables automatic synchronization to the captured signal for an unspecified Bluetooth device address.

param auto_synch

OFF | ON

set_bd_address(bd_address: str)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BDADdress
driver.configure.inputSignal.set_bd_address(bd_address = r1)

Specifies the Bluetooth device address that the R&S CMW expects the EUT to use to generate its access code.

param bd_address

hex 12-digit hex number Range: #H0 to #HFFFFFFFFFFFF

set_btype(burst_type: RsCmwBluetoothMeas.enums.BurstType)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BTYPe
driver.configure.inputSignal.set_btype(burst_type = enums.BurstType.BR)

Specifies the measured burst / packet type. For the combined signal path scenario, use CONFigure:BLUetooth:SIGN<i>:CONNection:BTYPe.

param burst_type

BR | EDR | LE BR: ‘Basic Rate’ EDR: ‘Enhanced Data Rate’ LE: ‘Low Energy’

set_dmode(detection_mode: RsCmwBluetoothMeas.enums.AutoManualMode)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:DMODe
driver.configure.inputSignal.set_dmode(detection_mode = enums.AutoManualMode.AUTO)

Selects an algorithm which the R&S CMW uses to detect the measured burst.

param detection_mode

MANual | AUTO

set_lap(bd_address_lap: str)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:LAP
driver.configure.inputSignal.set_lap(bd_address_lap = r1)

Specifies the lower address part of the DUT’s Bluetooth device address.

param bd_address_lap

hex Six-digit hex number Range: #H0 to #HFFFFFF

set_nap(bd_address_nap: str)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:NAP
driver.configure.inputSignal.set_nap(bd_address_nap = r1)

Specifies the non-specific address part of the EUT’s Bluetooth device address.

param bd_address_nap

hex Four-digit hex number Range: #H0 to #HFFFF

set_uap(bd_address_uap: str)None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:UAP
driver.configure.inputSignal.set_uap(bd_address_uap = r1)

Specifies the upper address part of the DUT’s Bluetooth device address.

param bd_address_uap

hex Two-digit hex number Range: #H0 to #HFF

Cloning the Group

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

Subgroups