RfSettings
SCPI Commands :
CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:EATTenuation
CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:UMARgin
CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:ENPower
CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:FREQuency
CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:RLEVel
CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:LRINterval
- class RfSettingsCls[source]
RfSettings commands group definition. 18 total commands, 5 Subgroups, 6 group commands
- get_eattenuation() float[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:EATTenuation value: float = driver.configure.bluetooth.measurement.rfSettings.get_eattenuation()
Defines an external attenuation (or gain, if the value is negative) , to be applied to the input connector.
- return:
external_att: No help available
- get_envelope_power() float[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:ENPower value: float = driver.configure.bluetooth.measurement.rfSettings.get_envelope_power()
Sets the expected nominal power of the measured RF signal.
- return:
exp_nominal_power: The range of the expected nominal power can be calculated as follows: Range (Expected Nominal Power) = Range (Input Power) + External Attenuation - User Margin The input power range is stated in the specifications document.
- get_frequency() float[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:FREQuency value: float = driver.configure.bluetooth.measurement.rfSettings.get_frequency()
Selects the center frequency of the RF analyzer.
- return:
analyzer_freq: No help available
- get_lr_interval() float[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:LRINterval value: float = driver.configure.bluetooth.measurement.rfSettings.get_lr_interval()
Defines the measurement interval for level adjustment.
- return:
lvl_rang_interval: No help available
- get_rlevel() int[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:RLEVel value: int = driver.configure.bluetooth.measurement.rfSettings.get_rlevel()
Queries the reference level of the measured RF signal. The value is calculated as the expected peak power at the output of the DUT: Reference level = Expected Nominal Power + User Margin
- return:
reference_level: No help available
- get_umargin() float[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:UMARgin value: float = driver.configure.bluetooth.measurement.rfSettings.get_umargin()
Sets the margin that the measurement adds to the expected nominal power to determine the reference power. The reference power minus the external input attenuation must be within the power range of the selected input connector. Refer to the specifications document.
- return:
user_margin: No help available
- set_eattenuation(external_att: float) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:EATTenuation driver.configure.bluetooth.measurement.rfSettings.set_eattenuation(external_att = 1.0)
Defines an external attenuation (or gain, if the value is negative) , to be applied to the input connector.
- param external_att:
No help available
- set_envelope_power(exp_nominal_power: float) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:ENPower driver.configure.bluetooth.measurement.rfSettings.set_envelope_power(exp_nominal_power = 1.0)
Sets the expected nominal power of the measured RF signal.
- param exp_nominal_power:
The range of the expected nominal power can be calculated as follows: Range (Expected Nominal Power) = Range (Input Power) + External Attenuation - User Margin The input power range is stated in the specifications document.
- set_frequency(analyzer_freq: float) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:FREQuency driver.configure.bluetooth.measurement.rfSettings.set_frequency(analyzer_freq = 1.0)
Selects the center frequency of the RF analyzer.
- param analyzer_freq:
No help available
- set_lr_interval(lvl_rang_interval: float) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:LRINterval driver.configure.bluetooth.measurement.rfSettings.set_lr_interval(lvl_rang_interval = 1.0)
Defines the measurement interval for level adjustment.
- param lvl_rang_interval:
No help available
- set_umargin(user_margin: float) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RFSettings:UMARgin driver.configure.bluetooth.measurement.rfSettings.set_umargin(user_margin = 1.0)
Sets the margin that the measurement adds to the expected nominal power to determine the reference power. The reference power minus the external input attenuation must be within the power range of the selected input connector. Refer to the specifications document.
- param user_margin:
No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.bluetooth.measurement.rfSettings.clone()
Subgroups