Channel

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:CHANnel:DL
CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:CHANnel:UL
class ChannelCls[source]

Channel commands group definition. 2 total commands, 0 Subgroups, 2 group commands

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

Selects the DL channel number. It must be valid for the current operating band. The related UL channel number is calculated and set automatically. By appending a Hz unit (e.g. Hz, kHz, MHz) to a setting command, you can set the channel via its center frequency (only integer numbers accepted) . By appending a Hz unit to a query command, you can query the center frequency instead of the channel number. For channel numbers and frequencies depending on operating bands, see ‘Operating bands’.

return:

channel: decimal Range: depends on operating band

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

Selects the UL channel number. It must be valid for the current operating band. The related DL channel number is calculated and set automatically. By appending a Hz unit (e.g. Hz, kHz, MHz) to a setting command, you can set the channel via its center frequency (only integer numbers accepted) . By appending a Hz unit to a query command, you can query the center frequency instead of the channel number. For channel numbers and frequencies depending on operating bands, see ‘Operating bands’.

return:

channel: decimal Range: depends on operating band

set_downlink(channel: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:CHANnel:DL
driver.configure.rfSettings.pcc.channel.set_downlink(channel = 1)

Selects the DL channel number. It must be valid for the current operating band. The related UL channel number is calculated and set automatically. By appending a Hz unit (e.g. Hz, kHz, MHz) to a setting command, you can set the channel via its center frequency (only integer numbers accepted) . By appending a Hz unit to a query command, you can query the center frequency instead of the channel number. For channel numbers and frequencies depending on operating bands, see ‘Operating bands’.

param channel:

decimal Range: depends on operating band

set_uplink(channel: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:CHANnel:UL
driver.configure.rfSettings.pcc.channel.set_uplink(channel = 1)

Selects the UL channel number. It must be valid for the current operating band. The related DL channel number is calculated and set automatically. By appending a Hz unit (e.g. Hz, kHz, MHz) to a setting command, you can set the channel via its center frequency (only integer numbers accepted) . By appending a Hz unit to a query command, you can query the center frequency instead of the channel number. For channel numbers and frequencies depending on operating bands, see ‘Operating bands’.

param channel:

decimal Range: depends on operating band