AmRxEntity

Package: simu5g.stack.rlc.am

AmRxEntity

simple module

This module implements the receiving functionalities of the Acknowledged Mode (AM) of the Radio Link Control (RLC) layer for a specific connection. It stores RLC Protocol Data Units (PDUs) that arrive from the Medium Access Control (MAC) layer and, when possible, performs reassembly and in-sequence delivery of packets to the Packet Data Convergence Protocol (PDCP) layer. It also acknowledges the (un)successful reception of PDUs to the peering AmTxEntity to trigger retransmissions of missing packets and provide guaranteed delivery of packets to the PDCP layer

Parameters

Name Type Default value Description
rxWindowSize int 20
ackReportInterval double 0.10s
statusReportInterval double 0.20s
timeout double 1s

Timeout for RX Buffer

Properties

Name Value Description
dynamic true
display i=block/segm

Source code

//
// This module implements the receiving functionalities of the Acknowledged
// Mode (AM) of the Radio Link Control (RLC) layer for a specific connection.
// It stores RLC Protocol Data Units (PDUs) that arrive from the Medium Access
// Control (MAC) layer and, when possible, performs reassembly and in-sequence
// delivery of packets to the Packet Data Convergence Protocol (PDCP) layer.
// It also acknowledges the (un)successful reception of PDUs to the peering ~AmTxEntity
// to trigger retransmissions of missing packets and provide guaranteed
// delivery of packets to the PDCP layer
//
simple AmRxEntity
{
    parameters:
        @dynamic(true);
        @display("i=block/segm");
        int rxWindowSize = default(20);
        double ackReportInterval @unit(s) = 0.10s;
        double statusReportInterval @unit(s) = 0.20s;
        double timeout @unit(s) = default(1s);            // Timeout for RX Buffer
}
File: src/stack/rlc/am/AmRxEntity.ned