Qpch

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:CHANnel
CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:LEVel
CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:RATE
class Qpch[source]

Qpch commands group definition. 4 total commands, 1 Sub-groups, 3 group commands

get_channel()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:CHANnel
value: int = driver.configure.layer.qpch.get_channel()

Queries the Walsh code of QPCH.

return

channel: Range: 1 to 128

get_level()float[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:LEVel
value: float = driver.configure.layer.qpch.get_level()

Queries the level of quick paging channel (QPCH) relative to the ‘CDMA Power’.

return

level: Range: -20 dB to -1 dB, Unit: dB

get_rate()RsCmwCdma2kSig.enums.PagingChannelRate[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:RATE
value: enums.PagingChannelRate = driver.configure.layer.qpch.get_rate()

Specifies the rate of quick paging channel (QPCH) .

return

rate: R4K8 | R9K6 4800 bit/s, 9600 bit/s Unit: bit/s

set_rate(rate: RsCmwCdma2kSig.enums.PagingChannelRate)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:RATE
driver.configure.layer.qpch.set_rate(rate = enums.PagingChannelRate.R4K8)

Specifies the rate of quick paging channel (QPCH) .

param rate

R4K8 | R9K6 4800 bit/s, 9600 bit/s Unit: bit/s

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.layer.qpch.clone()

Subgroups