Nbehavior

SCPI Commands :

[CONFigure]:SIGNaling:FGS:NBEHavior:DITimer
[CONFigure]:SIGNaling:FGS:NBEHavior:KRRC
class NbehaviorCls[source]

Nbehavior commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_di_timer() float[source]
# SCPI: [CONFigure]:SIGNaling:FGS:NBEHavior:DITimer
value: float or bool = driver.configure.signaling.fgs.nbehavior.get_di_timer()

Configures the data inactivity timer for 5GS tracking areas. With enabled timer, an RRC connection is released when there has been no activity on the connection (no traffic) for the configured time.

return:

timer: (float or boolean) Numeric value: Enables the timer and sets the timer value. ON: Enables the timer, using the configured numeric value. OFF: Disables the timer (no release due to inactivity) .

get_krrc() bool[source]
# SCPI: [CONFigure]:SIGNaling:FGS:NBEHavior:KRRC
value: bool = driver.configure.signaling.fgs.nbehavior.get_krrc()

Selects whether the RRC connection is kept after a registration in a 5GS tracking area.

return:

enable: No help available

set_di_timer(timer: float) None[source]
# SCPI: [CONFigure]:SIGNaling:FGS:NBEHavior:DITimer
driver.configure.signaling.fgs.nbehavior.set_di_timer(timer = 1.0)

Configures the data inactivity timer for 5GS tracking areas. With enabled timer, an RRC connection is released when there has been no activity on the connection (no traffic) for the configured time.

param timer:

(float or boolean) Numeric value: Enables the timer and sets the timer value. ON: Enables the timer, using the configured numeric value. OFF: Disables the timer (no release due to inactivity) .

set_krrc(enable: bool) None[source]
# SCPI: [CONFigure]:SIGNaling:FGS:NBEHavior:KRRC
driver.configure.signaling.fgs.nbehavior.set_krrc(enable = False)

Selects whether the RRC connection is kept after a registration in a 5GS tracking area.

param enable:

No help available

Cloning the Group

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

Subgroups