LteRlcAmEntity.ned
NED File src/simu5g/stack/rlc/LteRlcAmEntity.ned
| Name | Type | Description |
|---|---|---|
| LteRlcAmEntity | compound module |
RLC AM entity of an LTE data radio bearer: the RlcAmEntityBase compound with its TX/RX sides bound to the LTE (FI wire format, TS 36.322) entity profiles. Selected by BearerManagement for LTE bearers via its lteRlcAmEntityModuleType parameter, which defaults to this type. |
Source code
// // Simu5G // // Authors: Andras Varga (OpenSim Ltd) // // This file is part of a software released under the license included in file // "license.pdf". Please read LICENSE and README files before using it. // The above files and the present reference are part of the software itself, // and cannot be removed from it. // package simu5g.stack.rlc; // // RLC AM entity of an LTE data radio bearer: the ~RlcAmEntityBase compound with // its TX/RX sides bound to the LTE (FI wire format, TS 36.322) entity profiles. // Selected by BearerManagement for LTE bearers via its lteRlcAmEntityModuleType // parameter, which defaults to this type. // module LteRlcAmEntity extends RlcAmEntityBase { parameters: tx.typename = default("simu5g.stack.rlc.am.LteRlcAmTxEntity"); rx.typename = default("simu5g.stack.rlc.am.LteRlcAmRxEntity"); }