Service Access Point (SAP) offered by the UE PHY to the UE RRC for control purposes. More...
#include "lte-ue-cphy-sap.h"
Classes | |
struct | UeMeasurementsElement |
Parameters of the ReportUeMeasurements primitive: RSRP [dBm] and RSRQ [dB] See section 5.1.1 and 5.1.3 of TS 36.214. More... | |
struct | UeMeasurementsParameters |
UeMeasurementsParameters structure. More... | |
Public Member Functions | |
virtual | ~LteUeCphySapUser () |
destructor More... | |
virtual void | RecvMasterInformationBlock (uint16_t cellId, LteRrcSap::MasterInformationBlock mib)=0 |
Relay an MIB message from the PHY entity to the RRC layer. More... | |
virtual void | RecvSystemInformationBlockType1 (uint16_t cellId, LteRrcSap::SystemInformationBlockType1 sib1)=0 |
Relay an SIB1 message from the PHY entity to the RRC layer. More... | |
virtual void | ReportUeMeasurements (UeMeasurementsParameters params)=0 |
Send a report of RSRP and RSRQ values perceived from PSS by the PHY entity (after applying layer-1 filtering) to the RRC layer. More... | |
Service Access Point (SAP) offered by the UE PHY to the UE RRC for control purposes.
This is the CPHY SAP User, i.e., the part of the SAP that contains the RRC methods called by the PHY
Definition at line 156 of file lte-ue-cphy-sap.h.
|
virtual |
destructor
Definition at line 29 of file lte-ue-cphy-sap.cc.
|
pure virtual |
Relay an MIB message from the PHY entity to the RRC layer.
cellId | the ID of the eNodeB where the message originates from |
mib | the Master Information Block message |
This function is typically called after PHY receives an MIB message over the BCH.
Implemented in ns3::MemberLteUeCphySapUser< C >.
Referenced by ns3::LteUePhy::ReceiveLteControlMessageList().
|
pure virtual |
Relay an SIB1 message from the PHY entity to the RRC layer.
cellId | the ID of the eNodeB where the message originates from |
sib1 | the System Information Block Type 1 message |
This function is typically called after PHY receives an SIB1 message over the BCH.
Implemented in ns3::MemberLteUeCphySapUser< C >.
Referenced by ns3::LteUePhy::ReceiveLteControlMessageList().
|
pure virtual |
Send a report of RSRP and RSRQ values perceived from PSS by the PHY entity (after applying layer-1 filtering) to the RRC layer.
params | the structure containing a vector of cellId, RSRP and RSRQ |
Implemented in ns3::MemberLteUeCphySapUser< C >.
Referenced by ns3::LteUePhy::ReportUeMeasurements().