Channels<Channels>

RepCap Settings

# Range: Nr1 .. Nr8
rc = driver.configure.rfSettings.frequency.channels.repcap_channels_get()
driver.configure.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]: decimal Comma-separated list of channel indices 1, 2, 4, or 8 values, see table below Range: 0 to 200

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

The command logic depends on the standard. This description applies to the standards 802.11ac and ax. For other standards, see method RsCmwWlanMeas.Configure.RfSettings.Frequency.Channels.set. A setting command sets 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 comma-separated list.

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

  • method RsCmwWlanMeas.Configure.Isignal.standard

  • method RsCmwWlanMeas.Configure.Isignal.bandwidth

  • method RsCmwWlanMeas.Configure.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.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 and ax. For other standards, see method RsCmwWlanMeas.Configure.RfSettings.Frequency.Channels.set. A setting command sets 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 comma-separated list.

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

  • method RsCmwWlanMeas.Configure.Isignal.standard

  • method RsCmwWlanMeas.Configure.Isignal.bandwidth

  • method RsCmwWlanMeas.Configure.RfSettings.Frequency.band

param channel:

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

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.rfSettings.frequency.channels.clone()