pdcch decoder was skipping nof_cce=L

This commit is contained in:
Ismael Gomez 2017-03-27 10:08:02 +02:00
parent 6855615635
commit 72bbc08641
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ uint32_t srslte_pdcch_ue_locations_ncce(uint32_t nof_cce, srslte_dci_location_t
L = (1 << l);
// For all possible ncce offset
for (i = 0; i < SRSLTE_MIN(nof_cce / L, S[l]/PDCCH_FORMAT_NOF_CCE(l)); i++) {
if (nof_cce > L) {
if (nof_cce >= L) {
ncce = L * ((Yk + i) % (nof_cce / L));
if (k < max_candidates && ncce + L <= nof_cce)
{