From c75f314c3fdab9d7d8f3c676fab8b79759a2db44 Mon Sep 17 00:00:00 2001 From: Robert Falkenberg Date: Fri, 9 Aug 2019 12:25:32 +0200 Subject: [PATCH] Fixed incorrect DCI location assignment in pdsch_enodeb.c example --- lib/examples/pdsch_enodeb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/examples/pdsch_enodeb.c b/lib/examples/pdsch_enodeb.c index 6bb65c52f..5f6a95c92 100644 --- a/lib/examples/pdsch_enodeb.c +++ b/lib/examples/pdsch_enodeb.c @@ -917,8 +917,8 @@ int main(int argc, char **argv) { /* Encode PDCCH */ INFO("Putting DCI to location: n=%d, L=%d\n", locations[sf_idx][0].ncce, locations[sf_idx][0].L); - dci_msg.location = locations[sf_idx][0]; srslte_dci_msg_pack_pdsch(&cell, &dl_sf, NULL, &dci_dl, &dci_msg); + dci_msg.location = locations[sf_idx][0]; if (srslte_pdcch_encode(&pdcch, &dl_sf, &dci_msg, sf_symbols)) { ERROR("Error encoding DCI message\n"); exit(-1);