Removed debug printf from enb scheduler

This commit is contained in:
Ismael Gomez 2018-02-06 12:55:28 +01:00
parent 7b254ff437
commit 9dab102a7e
1 changed files with 1 additions and 10 deletions

View File

@ -864,16 +864,7 @@ int sched::ul_sched(uint32_t tti, srsenb::sched_interface::ul_sched_res_t* sched
printf("SCHED: Could not schedule UL DCI rnti=0x%x, pid=%d, L=%d, sf_idx=%d\n", printf("SCHED: Could not schedule UL DCI rnti=0x%x, pid=%d, L=%d, sf_idx=%d\n",
rnti, h->get_id(), aggr_level, sf_idx); rnti, h->get_id(), aggr_level, sf_idx);
sched_ue::sched_dci_cce_t *loc=user->get_locations(current_cfi, sf_idx); sched_result->pusch[nof_dci_elems].needs_pdcch = false;
for (int i=0;i<loc->nof_loc[aggr_level];i++) {
printf("n=%d\n", loc->cce_start[aggr_level][i]);
}
printf("used=[");
for (int i=0;i<MAX_CCE;i++) {
printf("%d,", used_cce[i]);
}
printf("\n");
sched_result->pusch[nof_dci_elems].needs_pdcch = false;
} else { } else {
sched_result->pusch[nof_dci_elems].needs_pdcch = true; sched_result->pusch[nof_dci_elems].needs_pdcch = true;
} }