Ibit<Indicator>

RepCap Settings

# Range: Nr1 .. Nr2
rc = driver.configure.layer.qpch.ibit.repcap_indicator_get()
driver.configure.layer.qpch.ibit.repcap_indicator_set(repcap.Indicator.Nr1)

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:IBIT<Indicator>
class Ibit[source]

Ibit commands group definition. 1 total commands, 0 Sub-groups, 1 group commands Repeated Capability: Indicator, default value after init: Indicator.Nr1

get(indicator=<Indicator.Default: -1>)bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:IBIT<n>
value: bool = driver.configure.layer.qpch.ibit.get(indicator = repcap.Indicator.Default)

Enables up to two indicators that trigger the MS to decode the PCH.

param indicator

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

return

indicator_bit: OFF | ON

set(indicator_bit: bool, indicator=<Indicator.Default: -1>)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:QPCH:IBIT<n>
driver.configure.layer.qpch.ibit.set(indicator_bit = False, indicator = repcap.Indicator.Default)

Enables up to two indicators that trigger the MS to decode the PCH.

param indicator_bit

OFF | ON

param indicator

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

Cloning the Group

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