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.bluetooth.measurement.inputSignal.get_asynchronize()

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

return:

auto_synch: No help available

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

Specifies the measured burst / packet type.

return:

burst_type: 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.bluetooth.measurement.inputSignal.get_dmode()

Selects an algorithm which the CMP180 uses to detect the measured burst.

return:

detection_mode: No help available

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

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

param auto_synch:

No help available

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

Specifies the measured burst / packet type.

param burst_type:

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.bluetooth.measurement.inputSignal.set_dmode(detection_mode = enums.AutoManualMode.AUTO)

Selects an algorithm which the CMP180 uses to detect the measured burst.

param detection_mode:

No help available

Cloning the Group

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

Subgroups