Commit 4b15a77a authored by Sakthivel Velumani's avatar Sakthivel Velumani Committed by Thomas Schlichter

Fix build issue

parent b8a5183b
...@@ -2219,7 +2219,7 @@ void nr_rx_pusch(PHY_VARS_gNB *gNB, ...@@ -2219,7 +2219,7 @@ void nr_rx_pusch(PHY_VARS_gNB *gNB,
} // symbol loop } // symbol loop
if (!(frame % 128)) { if (!(frame % 128)) {
int num_llr = num_re_total*rel15_ul->qam_mod_order; int num_llr = num_re_total*rel15_ul->qam_mod_order;
GnbScopeUpdate(gNB, puschLLR, num_llr); GnbScopeUpdate(gNB, puschLLRe, num_llr);
GnbScopeUpdate(gNB, puschIQ, num_re_total); GnbScopeUpdate(gNB, puschIQe, num_re_total);
} }
} }
...@@ -79,10 +79,10 @@ IQPlotGnb *puschIq; ...@@ -79,10 +79,10 @@ IQPlotGnb *puschIq;
void scopeUpdaterGnb(enum PlotTypeGnbIf plotType, int numElt) void scopeUpdaterGnb(enum PlotTypeGnbIf plotType, int numElt)
{ {
if (plotType == puschLLR && currentActivePlots[static_cast<int>(PlotTypeGnb::puschLLR)]) { if (plotType == puschLLRe && currentActivePlots[static_cast<int>(PlotTypeGnb::puschLLR)]) {
puschLlr->len = numElt; puschLlr->len = numElt;
puschLlr->newData->updateScope(); puschLlr->newData->updateScope();
} else if (plotType == puschIQ && currentActivePlots[static_cast<int>(PlotTypeGnb::puschIQ)]) { } else if (plotType == puschIQe && currentActivePlots[static_cast<int>(PlotTypeGnb::puschIQ)]) {
puschIq->len = numElt; puschIq->len = numElt;
puschIq->newData->updateScope(); puschIq->newData->updateScope();
} }
......
...@@ -74,8 +74,8 @@ enum PlotTypeGnbIf { ...@@ -74,8 +74,8 @@ enum PlotTypeGnbIf {
empty, empty,
waterFall, waterFall,
CIR, CIR,
puschLLR, puschLLRe,
puschIQ, puschIQe,
puschSNR, puschSNR,
puschBLER, puschBLER,
puschMCS, puschMCS,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment