Channels<Channels>

RepCap Settings

# Range: Nr1 .. Nr8
rc = driver.configure.wlanMeas.rfSettings.frequency.channels.repcap_channels_get()
driver.configure.wlanMeas.rfSettings.frequency.channels.repcap_channels_set(repcap.Channels.Nr1)

SCPI Command :

CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:CHANnels<Ch>
class ChannelsCls[source]

Channels commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Channels, default value after init: Channels.Nr1

class GetStruct[source]

Response structure. Fields:

  • Channel_Other: int: No parameter help available

  • Channels: List[int]: Comma-separated list of channel indices 1, 2, 4, or 8 values, see table below.

get(channels=Channels.Default) GetStruct[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:CHANnels<Ch>
value: GetStruct = driver.configure.wlanMeas.rfSettings.frequency.channels.get(channels = repcap.Channels.Default)

The command logic depends on the standard. This description applies to the standards 802.11ac, ax, and be. For other standards, see method RsCMPX_WlanMeas.Configure.WlanMeas.RfSettings.Frequency.Channels.set. A setting command sets the channel number <Ch> to the channel index <Channel>. The other 20-MHz channels of the bandwidth are configured automatically, resulting in a sequence of channel indices with the increment 4, see examples. A query returns the channel indices of all 20-MHz channels as a comma-separated list.

INTRO_CMD_HELP: Before using this command, configure the standard, the bandwidth and the band, see:

  • method RsCMPX_WlanMeas.Configure.WlanMeas.Isignal.standard

  • method RsCMPX_WlanMeas.Configure.WlanMeas.Isignal.bandwidth

  • method RsCMPX_WlanMeas.Configure.WlanMeas.RfSettings.Frequency.band

param channels:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Channels’)

return:

structure: for return value, see the help for GetStruct structure arguments.

set(channel: float, channels=Channels.Default) None[source]
# SCPI: CONFigure:WLAN:MEASurement<Instance>:RFSettings:FREQuency:CHANnels<Ch>
driver.configure.wlanMeas.rfSettings.frequency.channels.set(channel = 1.0, channels = repcap.Channels.Default)

The command logic depends on the standard. This description applies to the standards 802.11ac, ax, and be. For other standards, see method RsCMPX_WlanMeas.Configure.WlanMeas.RfSettings.Frequency.Channels.set. A setting command sets the channel number <Ch> to the channel index <Channel>. The other 20-MHz channels of the bandwidth are configured automatically, resulting in a sequence of channel indices with the increment 4, see examples. A query returns the channel indices of all 20-MHz channels as a comma-separated list.

INTRO_CMD_HELP: Before using this command, configure the standard, the bandwidth and the band, see:

  • method RsCMPX_WlanMeas.Configure.WlanMeas.Isignal.standard

  • method RsCMPX_WlanMeas.Configure.WlanMeas.Isignal.bandwidth

  • method RsCMPX_WlanMeas.Configure.WlanMeas.RfSettings.Frequency.band

param channel:

Channel index for the 20-MHz channel number For a valid configuration, all 20-MHz channels must fit into the band. So the effective ranges depend on Ch, see table below.

param channels:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Channels’)

Cloning the Group

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