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,
} // symbol loop
if (!(frame % 128)) {
int num_llr = num_re_total*rel15_ul->qam_mod_order;
GnbScopeUpdate(gNB, puschLLR, num_llr);
GnbScopeUpdate(gNB, puschIQ, num_re_total);
GnbScopeUpdate(gNB, puschLLRe, num_llr);
GnbScopeUpdate(gNB, puschIQe, num_re_total);
}
}
......@@ -79,10 +79,10 @@ IQPlotGnb *puschIq;
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->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->newData->updateScope();
}
......
......@@ -74,8 +74,8 @@ enum PlotTypeGnbIf {
empty,
waterFall,
CIR,
puschLLR,
puschIQ,
puschLLRe,
puschIQe,
puschSNR,
puschBLER,
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