Frequency

SCPI Commands :

CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:SCHannel
CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:BAND
CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency
class FrequencyCls[source]

Frequency commands group definition. 4 total commands, 1 Subgroups, 3 group commands

get_band() FrequencyBand[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:BAND
value: enums.FrequencyBand = driver.configure.rfSettings.frequency.get_band()

Selects the frequency band.

return:

freq_band: B24Ghz | B5GHz | B4GHz B24Ghz: 2.4 GHz band B4GHz: 4 GHz band B5GHz: 5 GHz band

get_schannel() SlopeType[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:SCHannel
value: enums.SlopeType = driver.configure.rfSettings.frequency.get_schannel()

Sets the position of the secondary channel relative to the primary channel for 40 MHz 802.11n signals.

return:

second_channel: POSitive | NEGative POSitive: Secondary channel right above the primary channel NEGative: Secondary channel right below the primary channel

get_value() float[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency
value: float = driver.configure.rfSettings.frequency.get_value()

Configures the center frequency of the RF analyzer. Set it to the center frequency of the received 20-MHz, 40-MHz, 80-MHz, or 160-MHz WLAN channel. For 80+80 MHz signals, set the center frequency of the left segment. The frequency of the right segment is calculated using channel distance, see method RsCmwWlanMeas.Configure.Isignal.cdistance.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:WLAN:SIGN<i>:RFSettings:FREQuency

  • CONFigure:WLAN:SIGN<i>:RFSettings:CHANnel

For the supported frequency range, see ‘Frequency ranges’.

return:

frequency: numeric Unit: Hz

set_band(freq_band: FrequencyBand) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:BAND
driver.configure.rfSettings.frequency.set_band(freq_band = enums.FrequencyBand.B24Ghz)

Selects the frequency band.

param freq_band:

B24Ghz | B5GHz | B4GHz B24Ghz: 2.4 GHz band B4GHz: 4 GHz band B5GHz: 5 GHz band

set_schannel(second_channel: SlopeType) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:SCHannel
driver.configure.rfSettings.frequency.set_schannel(second_channel = enums.SlopeType.NEGative)

Sets the position of the secondary channel relative to the primary channel for 40 MHz 802.11n signals.

param second_channel:

POSitive | NEGative POSitive: Secondary channel right above the primary channel NEGative: Secondary channel right below the primary channel

set_value(frequency: float) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency
driver.configure.rfSettings.frequency.set_value(frequency = 1.0)

Configures the center frequency of the RF analyzer. Set it to the center frequency of the received 20-MHz, 40-MHz, 80-MHz, or 160-MHz WLAN channel. For 80+80 MHz signals, set the center frequency of the left segment. The frequency of the right segment is calculated using channel distance, see method RsCmwWlanMeas.Configure.Isignal.cdistance.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:WLAN:SIGN<i>:RFSettings:FREQuency

  • CONFigure:WLAN:SIGN<i>:RFSettings:CHANnel

For the supported frequency range, see ‘Frequency ranges’.

param frequency:

numeric Unit: Hz

Cloning the Group

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

Subgroups