Channel

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:RFSettings:CARRier<Carrier>:CHANnel:UL
CONFigure:WCDMa:SIGNaling<Instance>:RFSettings:CARRier<Carrier>:CHANnel:DL
class Channel[source]

Channel commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

get_downlink()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:CARRier<carrier>:CHANnel:DL
value: int = driver.configure.rfSettings.carrier.channel.get_downlink()

Selects the DL channel number. The channel number must be valid for the current operating band, for dependencies see ‘Operating Bands’. The related UL channel number is calculated and set automatically. For multi-carrier scenarios, the channel numbers of the other carriers are calculated and set as well.

return

channel_number: Range: depends on operating band

Global Repeated Capabilities: repcap.Carrier

get_uplink()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:CARRier<carrier>:CHANnel:UL
value: int = driver.configure.rfSettings.carrier.channel.get_uplink()

Selects the UL channel number. The channel number must be valid for the current operating band. For dependencies, see ‘Operating Bands’. The related DL channel number is calculated and set automatically.

return

channel_number: Range: depends on operating band

Global Repeated Capabilities: repcap.Carrier

set_downlink(channel_number: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:CARRier<carrier>:CHANnel:DL
driver.configure.rfSettings.carrier.channel.set_downlink(channel_number = 1)

Selects the DL channel number. The channel number must be valid for the current operating band, for dependencies see ‘Operating Bands’. The related UL channel number is calculated and set automatically. For multi-carrier scenarios, the channel numbers of the other carriers are calculated and set as well.

param channel_number

Range: depends on operating band

Global Repeated Capabilities: repcap.Carrier

set_uplink(channel_number: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:RFSettings:CARRier<carrier>:CHANnel:UL
driver.configure.rfSettings.carrier.channel.set_uplink(channel_number = 1)

Selects the UL channel number. The channel number must be valid for the current operating band. For dependencies, see ‘Operating Bands’. The related DL channel number is calculated and set automatically.

param channel_number

Range: depends on operating band

Global Repeated Capabilities: repcap.Carrier