Loop

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:FRATe
CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:PGENeration
CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:PATTern
class Loop[source]

Loop commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

get_frate()RsCmwCdma2kSig.enums.FrameRate[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:FRATe
value: enums.FrameRate = driver.configure.sconfig.loop.get_frate()

Sets the frame rate of the F-FCH to full, half, quarter, or eighth.

return

frame_rate: FULL | HALF | QUARter | EIGHth FULL: Frames at the full rate set. HALF: Frames at 1/2 of the rate set. QUARter: Frames at 1/4 of the rate set. EIGHth: Frames at 1/8 of the rate set.

get_pattern()str[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:PATTern
value: str = driver.configure.sconfig.loop.get_pattern()

Defines the bit pattern that the pattern generator uses to send to the MS for measurements. This pattern is used if ‘Pattern Generation’ (method RsCmwCdma2kSig.Configure.Sconfig.Loop.pgeneration) is set to FIXED.

return

pattern: String to specify the pattern.

get_pgeneration()RsCmwCdma2kSig.enums.PatternGeneration[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:PGENeration
value: enums.PatternGeneration = driver.configure.sconfig.loop.get_pgeneration()

Sets the type of pattern the R&S CMW generates and sends to the MS.

return

pgeneration: RAND | FIX RAND: Random: Sends a random pattern to the MS and is the preferred method to obtain the best measurement performance. FIX: Fixed: Sends the bit pattern defined with the pattern command (method RsCmwCdma2kSig.Configure.Sconfig.Loop.pattern) . The R&S CMW generates one fundamental data block to the MS. After a delay to allow for processing, the MS sends one reverse fundamental data block back to the R&S CMW. The R&S CMW can set the bits within a data block to a random pattern or any desired value (fixed) .

set_frate(frame_rate: RsCmwCdma2kSig.enums.FrameRate)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:FRATe
driver.configure.sconfig.loop.set_frate(frame_rate = enums.FrameRate.EIGHth)

Sets the frame rate of the F-FCH to full, half, quarter, or eighth.

param frame_rate

FULL | HALF | QUARter | EIGHth FULL: Frames at the full rate set. HALF: Frames at 1/2 of the rate set. QUARter: Frames at 1/4 of the rate set. EIGHth: Frames at 1/8 of the rate set.

set_pattern(pattern: str)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:PATTern
driver.configure.sconfig.loop.set_pattern(pattern = '1')

Defines the bit pattern that the pattern generator uses to send to the MS for measurements. This pattern is used if ‘Pattern Generation’ (method RsCmwCdma2kSig.Configure.Sconfig.Loop.pgeneration) is set to FIXED.

param pattern

String to specify the pattern.

set_pgeneration(pgeneration: RsCmwCdma2kSig.enums.PatternGeneration)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:LOOP:PGENeration
driver.configure.sconfig.loop.set_pgeneration(pgeneration = enums.PatternGeneration.FIX)

Sets the type of pattern the R&S CMW generates and sends to the MS.

param pgeneration

RAND | FIX RAND: Random: Sends a random pattern to the MS and is the preferred method to obtain the best measurement performance. FIX: Fixed: Sends the bit pattern defined with the pattern command (method RsCmwCdma2kSig.Configure.Sconfig.Loop.pattern) . The R&S CMW generates one fundamental data block to the MS. After a delay to allow for processing, the MS sends one reverse fundamental data block back to the R&S CMW. The R&S CMW can set the bits within a data block to a random pattern or any desired value (fixed) .