Package: simu5g.stack.pdcp_rrc
ILtePdcpRrc
module interfaceInterface for the PDCP/RRC layer of the LTE Stack.
This module serves as an interface for the Packet Data Convergence Protocol (PDCP) layer. It exchanges IP datagrams with the upper layers and sends/receives PDCP Protocol Data Units (PDUs) to/from the underlying Radio Link Control (RLC) layer. Its primary responsibilities include header compression and connection identification.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
Name | Type | Description |
---|---|---|
LtePdcpRrcBase | simple module |
The LtePdcpRrcBase module implements the functionalities of the Packet Data Convergence Protocol (PDCP). It enables header compression and maps incoming IP packets to different Radio Link Control (RLC) modes. This module dynamically creates LteTxPdcpEntity and LteRxPdcpEntity submodules to handle individual transmission/reception connections |
LtePdcpRrcEnb | simple module |
The LtePdcpRrcEnb module implements the PDCP/RRC layer for an LTE NIC employed at eNodeBs. It performs header compression and maps incoming IP datagrams to different Radio Link Control (RLC) modes. Additionally, it supports Dual Connectivity and Split Bearer functionalities. |
LtePdcpRrcEnbD2D | simple module |
The LtePdcpRrcEnbD2D module implements the PDCP/RRC layer for a LTE NIC employed at eNodeBs, providing support for D2D (Device-to-Device) communications. This module extends the basic LtePdcpRrcEnb by adding functionality for managing D2D-capable user equipment, specifically for buffering packets during D2D mode switching operations. |
LtePdcpRrcUe | simple module |
The LtePdcpRrcUe module implements the PDCP/RRC layer for an LTE NIC employed at a User Equipment. It performs header compression on incoming IP datagrams |
LtePdcpRrcUeD2D | simple module |
The LtePdcpRrcUeD2D module implements the PDCP/RRC layer for an LTE NIC employed at a User Equipment with support for Device-to-Device (D2D) communications. It extends the basic PDCP/RRC functionality with D2D communication capabilities. |
NRPdcpRrcEnb | simple module |
The NRPdcpRrcEnb module implements the PDCP/RRC layer for a NR NIC utilized at a Base Station. It extends the LtePdcpRrcEnbD2D module to enable Dual Connectivity and Split Bearer functionalities at the eNodeB module. |
NRPdcpRrcUe | simple module |
The NRPdcpRrcUe module implements the PDCP/RRC layer for an NR NIC employed at a User Equipment. It extends the LtePdcpRrcUeD2D module to enable Dual Connectivity and Split Bearer functionalities at the UE. |
Used in compound modules
Name | Type | Description |
---|---|---|
LteNicBase | compound module |
The LteNicBase module serves as the foundational building block for LTE networking in Simu5G. It integrates protocols for LTE communication, including PDCP, RLC, MAC, and PHY layers. This base module allows higher-level modules, such as User Equipment (UE) and eNodeB (evolved Node B), to configure and utilize these layers according to their specific requirements. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
headerCompressedSize | int |
Properties
Name | Value | Description |
---|---|---|
display | i=block/fork |
Source code
// // Interface for the PDCP/RRC layer of the LTE Stack. // // This module serves as an interface for the Packet Data Convergence Protocol (PDCP) layer. // It exchanges IP datagrams with the upper layers and sends/receives PDCP Protocol Data Units (PDUs) // to/from the underlying Radio Link Control (RLC) layer. // Its primary responsibilities include header compression and connection identification. // moduleinterface ILtePdcpRrc { parameters: @display("i=block/fork"); int headerCompressedSize @unit(B); gates: inout DataPort; inout EUTRAN_RRC_Sap; inout TM_Sap[]; inout UM_Sap[]; inout AM_Sap[]; }File: src/stack/pdcp_rrc/ILtePdcpRrc.ned