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.wlanMeas.rfSettings.frequency.get_band()
Selects the frequency band.
- return:
freq_band: B24Ghz: 2.4 GHz band B4GHz: 4 GHz band B5GHz: 5 GHz band B6GHz: 6 GHz band
- get_schannel() SlopeType[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:SCHannel value: enums.SlopeType = driver.configure.wlanMeas.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: 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.wlanMeas.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, 160-MHz, or 320-MHz WLAN channel.
- return:
frequency: For the supported frequency range, see ‘Frequency ranges’.
- set_band(freq_band: FrequencyBand) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:BAND driver.configure.wlanMeas.rfSettings.frequency.set_band(freq_band = enums.FrequencyBand.B24Ghz)
Selects the frequency band.
- param freq_band:
B24Ghz: 2.4 GHz band B4GHz: 4 GHz band B5GHz: 5 GHz band B6GHz: 6 GHz band
- set_schannel(second_channel: SlopeType) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:SCHannel driver.configure.wlanMeas.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: 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.wlanMeas.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, 160-MHz, or 320-MHz WLAN channel.
- param frequency:
For the supported frequency range, see ‘Frequency ranges’.
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.configure.wlanMeas.rfSettings.frequency.clone()
Subgroups