Timeout

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:TOUT:MOC
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TOUT:ATOFfset
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TOUT:PPIF
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TOUT:PREPetitions
CONFigure:WCDMa:SIGNaling<Instance>:CELL:TOUT:OSYNch
class Timeout[source]

Timeout commands group definition. 7 total commands, 2 Sub-groups, 5 group commands

get_at_offset()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:ATOFfset
value: int = driver.configure.cell.timeout.get_at_offset()

Specifies a delay value, used by the RRC for calculation of the activation time in peer messages. Low values correspond to fast signaling, high values to slow signaling.

return

offset: Range: 0 to 10

get_moc()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:MOC
value: int = driver.configure.cell.timeout.get_moc()

Defines the time period of R&S CMW alerting state.

return

timeout: 0: the alerting state is skipped 1 to 255: time period the R&S CMW waits before changes to ‘Call Established’ state Range: 0 to 255, Unit: s

get_osynch()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:OSYNch
value: int = driver.configure.cell.timeout.get_osynch()

Sets the out-of-synchronization timeout value. This value specifies the time after which the instrument, having waited for a signal from the connected UE, releases the connection and returns to state registered.

return

value: Range: 2 s to 25 s, Unit: s

get_ppif()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:PPIF
value: int = driver.configure.cell.timeout.get_ppif()

Number of paging indicators that the R&S CMW transmits in each PICH frame.

return

indications: 18 | 36 | 72 | 144

get_prepetitions()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:PREPetitions
value: int = driver.configure.cell.timeout.get_prepetitions()

Specifies the number of paging procedures to be performed if the UE does not answer paging.

return

repetitions: Range: 0 to 65535

set_at_offset(offset: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:ATOFfset
driver.configure.cell.timeout.set_at_offset(offset = 1)

Specifies a delay value, used by the RRC for calculation of the activation time in peer messages. Low values correspond to fast signaling, high values to slow signaling.

param offset

Range: 0 to 10

set_moc(timeout: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:MOC
driver.configure.cell.timeout.set_moc(timeout = 1)

Defines the time period of R&S CMW alerting state.

param timeout

0: the alerting state is skipped 1 to 255: time period the R&S CMW waits before changes to ‘Call Established’ state Range: 0 to 255, Unit: s

set_osynch(value: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:OSYNch
driver.configure.cell.timeout.set_osynch(value = 1)

Sets the out-of-synchronization timeout value. This value specifies the time after which the instrument, having waited for a signal from the connected UE, releases the connection and returns to state registered.

param value

Range: 2 s to 25 s, Unit: s

set_ppif(indications: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:PPIF
driver.configure.cell.timeout.set_ppif(indications = 1)

Number of paging indicators that the R&S CMW transmits in each PICH frame.

param indications

18 | 36 | 72 | 144

set_prepetitions(repetitions: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:TOUT:PREPetitions
driver.configure.cell.timeout.set_prepetitions(repetitions = 1)

Specifies the number of paging procedures to be performed if the UE does not answer paging.

param repetitions

Range: 0 to 65535

Cloning the Group

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

Subgroups