Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(448)

Unified Diff: src/lte/model/lte-ffr-distributed-algorithm.cc

Issue 328170043: NS-3 GSoC 2017 LTE CA handover milestone 2 and 3
Patch Set: NS-3 GSoC 2017 LTE CA handover milestone 2 and 3 Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/lte/model/lte-enb-rrc.cc ('k') | src/lte/model/lte-ffr-enhanced-algorithm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lte/model/lte-ffr-distributed-algorithm.cc
===================================================================
--- a/src/lte/model/lte-ffr-distributed-algorithm.cc
+++ b/src/lte/model/lte-ffr-distributed-algorithm.cc
@@ -389,8 +389,8 @@
{
NS_LOG_FUNCTION (this << rnti << (uint16_t) measResults.measId);
NS_LOG_INFO ("CellId: " << m_cellId << " RNTI :" << rnti << " MeasId: " << (uint16_t) measResults.measId
- << " RSRP: " << (uint16_t)measResults.rsrpResult
- << " RSRQ: " << (uint16_t)measResults.rsrqResult);
+ << " RSRP: " << (uint16_t)measResults.measResultPCell.rsrpResult
+ << " RSRQ: " << (uint16_t)measResults.measResultPCell.rsrqResult);
if (measResults.measId == m_rsrqMeasId)
{
@@ -402,7 +402,7 @@
}
it = m_ues.find (rnti);
- if (measResults.rsrqResult >= m_edgeSubBandRsrqThreshold)
+ if (measResults.measResultPCell.rsrqResult >= m_edgeSubBandRsrqThreshold)
{
if (it->second != CenterArea)
{
@@ -435,7 +435,7 @@
m_ues.insert (std::pair< uint16_t, uint8_t > (rnti, AreaUnset));
}
- UpdateNeighbourMeasurements (rnti, m_cellId, measResults.rsrpResult, measResults.rsrqResult);
+ UpdateNeighbourMeasurements (rnti, m_cellId, measResults.measResultPCell.rsrpResult, measResults.measResultPCell.rsrqResult);
if (measResults.haveMeasResultNeighCells
&& !measResults.measResultListEutra.empty ())
« no previous file with comments | « src/lte/model/lte-enb-rrc.cc ('k') | src/lte/model/lte-ffr-enhanced-algorithm.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b