T<Tnum>

RepCap Settings

# Range: Nr300 .. Nr319
rc = driver.configure.signaling.topology.fgs.timer.t.repcap_tnum_get()
driver.configure.signaling.topology.fgs.timer.t.repcap_tnum_set(repcap.Tnum.Nr300)

SCPI Command :

[CONFigure]:SIGNaling:TOPology:FGS:TIMer:T<no>
class TCls[source]

T commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Tnum, default value after init: Tnum.Nr300

class GetStruct[source]

Response structure. Fields:

  • 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_5_g: str, tnum=Tnum.Default) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:TOPology:FGS:TIMer:T<no>
value: GetStruct = driver.configure.signaling.topology.fgs.timer.t.get(name_ta_5_g = 'abc', tnum = repcap.Tnum.Default)

Configures the timer T3512 (periodic registration update in a 5GS tracking area) .

param name_ta_5_g:

Name of 5GS 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_5_g: str, factor: int, unit: TimerUnit = None, tnum=Tnum.Default) None[source]
# SCPI: [CONFigure]:SIGNaling:TOPology:FGS:TIMer:T<no>
driver.configure.signaling.topology.fgs.timer.t.set(name_ta_5_g = 'abc', factor = 1, unit = enums.TimerUnit.DEACtivated, tnum = repcap.Tnum.Default)

Configures the timer T3512 (periodic registration update in a 5GS tracking area) .

param name_ta_5_g:

Name of 5GS tracking area

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’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.signaling.topology.fgs.timer.t.clone()