Aprobes

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:MODE
CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:NOFFset
CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:IOFFset
CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:PINCrement
CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:PPSequence
class Aprobes[source]

Aprobes commands group definition. 7 total commands, 1 Sub-groups, 5 group commands

get_ioffset()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:IOFFset
value: int = driver.configure.network.aprobes.get_ioffset()

Specifies the initial power offset for access probes (INIT_PWR) parameter in the access parameters message.

return

initial_offset: Range: -16 dB to 15 dB, Unit: dB

get_mode()RsCmwCdma2kSig.enums.AccessProbeMode[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:MODE
value: enums.AccessProbeMode = driver.configure.network.aprobes.get_mode()

Specifies whether the tester acknowledges or ignores access probes from the MS.

return

mode: IGN | ACK

get_noffset()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:NOFFset
value: int = driver.configure.network.aprobes.get_noffset()

Specifies the nominal power offset for access probes (NOM_PWR) . The offset range depends on the network settings.

return

nominal_offset: Range: -8 dB to 7 dB, Unit: dB

get_pincrement()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:PINCrement
value: int = driver.configure.network.aprobes.get_pincrement()

Defines the step size of power increases (PWR_STEP) between consecutive access probes.

return

probe_increment: Range: 0 dB to 7 dB, Unit: dB

get_pp_sequence()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:PPSequence
value: int = driver.configure.network.aprobes.get_pp_sequence()

Defines the maximum number of access probes (NUM_STEP) contained in a single access probe sequence.

return

prob_per_sequence: Range: 1 to 16

set_ioffset(initial_offset: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:IOFFset
driver.configure.network.aprobes.set_ioffset(initial_offset = 1)

Specifies the initial power offset for access probes (INIT_PWR) parameter in the access parameters message.

param initial_offset

Range: -16 dB to 15 dB, Unit: dB

set_mode(mode: RsCmwCdma2kSig.enums.AccessProbeMode)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:MODE
driver.configure.network.aprobes.set_mode(mode = enums.AccessProbeMode.ACK)

Specifies whether the tester acknowledges or ignores access probes from the MS.

param mode

IGN | ACK

set_noffset(nominal_offset: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:NOFFset
driver.configure.network.aprobes.set_noffset(nominal_offset = 1)

Specifies the nominal power offset for access probes (NOM_PWR) . The offset range depends on the network settings.

param nominal_offset

Range: -8 dB to 7 dB, Unit: dB

set_pincrement(probe_increment: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:PINCrement
driver.configure.network.aprobes.set_pincrement(probe_increment = 1)

Defines the step size of power increases (PWR_STEP) between consecutive access probes.

param probe_increment

Range: 0 dB to 7 dB, Unit: dB

set_pp_sequence(prob_per_sequence: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:APRobes:PPSequence
driver.configure.network.aprobes.set_pp_sequence(prob_per_sequence = 1)

Defines the maximum number of access probes (NUM_STEP) contained in a single access probe sequence.

param prob_per_sequence

Range: 1 to 16

Cloning the Group

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

Subgroups