Nsa

SCPI Commands :

[CONFigure]:SIGNaling:LTE:UE:NSA:ACTivate
[CONFigure]:SIGNaling:LTE:UE:NSA:DEACtivate
class NsaCls[source]

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

class ActivateStruct[source]

Structure for setting input parameters. Contains optional setting parameters. Fields:

  • Ue_Id: str: Optional setting parameter. For future use. Enter any value if you want to use optional parameters.

  • Linked_Bearer_Id: int: Optional setting parameter. ID of the default bearer to which the dedicated bearer is linked. To get a list of all default bearer IDs, see [CMDLINKRESOLVED Catalog.Signaling.Lte.Ue.Dbearer#get_ CMDLINKRESOLVED].

  • Data_Flow: enums.DataFlow: Optional setting parameter. Configures the user data flow for the dedicated bearer. MCGSplit: MCG split bearer, with traffic split in the eNB SCG: SCG via gNB, no traffic split SCGSplit: SCG split bearer, with traffic split in the gNB

  • Traffic_Dist: float: Optional setting parameter. For MCGSplit and SCGSplit. A numeric value defines the percentage of the data to be transferred via the interface eNB - UE. The remainder is transferred via the interface gNB - UE. AUTO configures the traffic distribution automatically and dynamically, depending on the load in the eNB path.

  • Qci: enums.Qi: Optional setting parameter. Value of the quality of service class identifier. Values defined in 3GPP TS 23.203, table 6.1.7. The GUI shows the designation of each value.

  • Max_Dl_Bitrate: int: Optional setting parameter. Maximum DL bit rate allowed in the network.

  • Max_Ul_Bitrate: int: Optional setting parameter. Maximum UL bit rate allowed in the network.

  • Gtd_Dl_Bitrate: int: Optional setting parameter. DL bit rate guaranteed by the network for the bearer.

  • Gtd_Ul_Bitrate: int: Optional setting parameter. UL bit rate guaranteed by the network for the bearer.

  • Pscell: str: Optional setting parameter. Name of the NR cell for which you want to activate EN-DC.

  • Rlc_Mode: enums.RlcMode: Optional setting parameter. RLC mode ACK: acknowledged UACK: unacknowledged

activate(structure: ActivateStruct) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:UE:NSA:ACTivate
structure = driver.configure.signaling.lte.ue.nsa.ActivateStruct()
structure.Ue_Id: str = 'abc'
structure.Linked_Bearer_Id: int = 1
structure.Data_Flow: enums.DataFlow = enums.DataFlow.MCG
structure.Traffic_Dist: float = 1.0
structure.Qci: enums.Qi = enums.Qi.Q1
structure.Max_Dl_Bitrate: int = 1
structure.Max_Ul_Bitrate: int = 1
structure.Gtd_Dl_Bitrate: int = 1
structure.Gtd_Ul_Bitrate: int = 1
structure.Pscell: str = 'abc'
structure.Rlc_Mode: enums.RlcMode = enums.RlcMode.ACK
driver.configure.signaling.lte.ue.nsa.activate(structure)

Activates the EN-DC mode and establishes a dedicated bearer.

param structure:

for set value, see the help for ActivateStruct structure arguments.

deactivate(ue_id: str = None, bearer_id: int = None, esm_cause: EsmCause = None) None[source]
# SCPI: [CONFigure]:SIGNaling:LTE:UE:NSA:DEACtivate
driver.configure.signaling.lte.ue.nsa.deactivate(ue_id = 'abc', bearer_id = 1, esm_cause = enums.EsmCause.C100)

Deactivates the EN-DC mode and releases a dedicated bearer.

param ue_id:

For future use. Enter any value if you want to use optional parameters.

param bearer_id:

ID of the dedicated bearer to be released. To get a list of all dedicated bearer IDs, see method RsCMX_Signaling.Catalog.Signaling.Lte.Ue.Bearer.get_.

param esm_cause:

Release cause to be sent. Values defined in 3GPP TS 24.301, chapter 9.9.4.4.

Cloning the Group

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

Subgroups