InputSignal

SCPI Commands :

CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:DMODe
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:BTYPe
CONFigure:BLUetooth:MEASurement<Instance>:ISIGnal:ASYNchronize
class InputSignalCls[source]

InputSignal commands group definition. 72 total commands, 18 Subgroups, 3 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_btype() 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, useCONFigure:BLUetooth:SIGN<i>:CONNection:BTYPe.

return:

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

get_dmode() 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

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_btype(burst_type: 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, useCONFigure: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: 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

Cloning the Group

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

Subgroups