lte: Resolve doxygen warnings

This commit is contained in:
ZorazeAli
2019-05-04 15:55:51 +02:00
parent 06601b2025
commit 49da14f522
3 changed files with 6 additions and 4 deletions

View File

@@ -805,8 +805,8 @@ private:
uint16_t m_numOfFrames; ///< count the number of frames for which the downlink radio link quality is estimated
double m_sinrDbFrame; ///< the average SINR per radio frame
SpectrumValue m_ctrlSinrForRlf; ///< the CTRL SINR used for RLF detection
uint64_t m_imsi;
bool m_enableRlfDetection;
uint64_t m_imsi; ///< the IMSI of the UE
bool m_enableRlfDetection; ///< Flag to enable/disable RLF detection
}; // end of `class LteUePhy`

View File

@@ -261,7 +261,7 @@ public:
/**
* \brief Store the previous cell id
*
* \param The cell id of the previous cell the UE was attached to
* \param cellId The cell id of the previous cell the UE was attached to
*/
void StorePreviousCellId (uint16_t cellId);

View File

@@ -61,13 +61,15 @@ class LteRadioLinkFailureTestCase : public TestCase
public:
/**
* \brief Creates an instance of the radio link failure test case.
* \param name name of this test
*
* \param numEnbs number of eNodeBs
* \param numUes number of UEs
* \param simTime the simulation time
* \param isIdealRrc if true, simulation uses Ideal RRC protocol, otherwise
* simulation uses Real RRC protocol
* \param uePositionList Position of the UEs
* \param enbPositionList Position of the eNodeBs
* \param ueJumpAwayPosition Vector holding the UE jump away coordinates
* \param checkConnectedList the time at which UEs should have an active RRC connection
*/
LteRadioLinkFailureTestCase (uint32_t numEnbs, uint32_t numUes, Time simTime, bool isIdealRrc,