Extended

SCPI Command :

[CONFigure]:SIGNaling:TOPology:EPS:TIMer:T<no>:EXTended
class ExtendedCls[source]

Extended commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Enable: bool: ON: Send the timer value to the UE. OFF: Do not send a timer value.

  • Factor: int: The timer value is calculated as Factor * Unit.

  • Unit: enums.TimerUnit: S2, S30: unit 2 seconds, 30 seconds M1, M10: unit 1 minute, 10 minutes H1, H10, H320: unit 1 hour, 10 hours, 320 hours DEACtivated: timer deactivated

get(name_ta_eps: str, tnum=Tnum.Default) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:TOPology:EPS:TIMer:T<no>:EXTended
value: GetStruct = driver.configure.signaling.topology.eps.timer.t.extended.get(name_ta_eps = 'abc', tnum = repcap.Tnum.Default)

Configures the extended timer T3412.

param name_ta_eps:

Name of EPS tracking area

param tnum:

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

return:

structure: for return value, see the help for GetStruct structure arguments.

set(name_ta_eps: str, enable: bool, factor: int = None, unit: TimerUnit = None, tnum=Tnum.Default) None[source]
# SCPI: [CONFigure]:SIGNaling:TOPology:EPS:TIMer:T<no>:EXTended
driver.configure.signaling.topology.eps.timer.t.extended.set(name_ta_eps = 'abc', enable = False, factor = 1, unit = enums.TimerUnit.DEACtivated, tnum = repcap.Tnum.Default)

Configures the extended timer T3412.

param name_ta_eps:

Name of EPS tracking area

param enable:

ON: Send the timer value to the UE. OFF: Do not send a timer value.

param factor:

The timer value is calculated as Factor * Unit.

param unit:

S2, S30: unit 2 seconds, 30 seconds M1, M10: unit 1 minute, 10 minutes H1, H10, H320: unit 1 hour, 10 hours, 320 hours DEACtivated: timer deactivated

param tnum:

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