Update doxygen doc of ReportUeMeasurements C-PHY primitive
authorMarco Miozzo <marco.miozzo@cttc.es>
Fri, 01 Mar 2013 09:30:59 +0100
changeset 9992 16fb353f6347
parent 9986 d1c0357a227f
child 9993 7377894ac3b0
Update doxygen doc of ReportUeMeasurements C-PHY primitive
src/lte/model/lte-ue-cphy-sap.h
--- a/src/lte/model/lte-ue-cphy-sap.h	Thu Feb 21 17:22:42 2013 +0100
+++ b/src/lte/model/lte-ue-cphy-sap.h	Fri Mar 01 09:30:59 2013 +0100
@@ -108,11 +108,16 @@
    */
   virtual ~LteUeCphySapUser ();
 
+  
+  /**
+   * Parameters of the ReportUeMeasurements primitive: RSRP [dBm] and RSRQ [dB]
+   * See section 5.1.1 and 5.1.3 of TS 36.214
+   */
   struct UeMeasurementsElement
     {
       uint16_t m_cellId;
-      double m_rsrp;
-      double m_rsrq;
+      double m_rsrp;  // [dBm]
+      double m_rsrq;  // [dB]
     };
   struct UeMeasurementsParameters
     {
@@ -128,9 +133,7 @@
 
   /**
    *
-   * \param cellId the cellId of the eNB reported
-   * \param rsrp the RSRP measured (see sect. 5.1.1 of 36.214) [W]
-   * \param rsrq the RSRQ measured (see sect. 5.1.3 of 36.214) [linear ratio]
+   * \param params the structure containing the vector of cellId, SRSP and RSRQ
    */
   virtual void ReportUeMeasurements (UeMeasurementsParameters params) = 0;
 };