Commit 81ae8fb2 authored by Raymond Knopp's avatar Raymond Knopp

cleaned up formatting of CCE table trace in eNB_scheduler_primitives.c

parent 0dc55ec8
...@@ -1010,10 +1010,11 @@ void dump_CCE_table(int *CCE_table,const int nCCE,const unsigned short rnti,cons ...@@ -1010,10 +1010,11 @@ void dump_CCE_table(int *CCE_table,const int nCCE,const unsigned short rnti,cons
int nb_candidates = 0,i; int nb_candidates = 0,i;
unsigned int Yk; unsigned int Yk;
printf("CCE 0: ");
for (i=0;i<nCCE;i++) { for (i=0;i<nCCE;i++) {
printf("%1d.",CCE_table[i]); printf("%1d.",CCE_table[i]);
if ((i&7) == 0) if ((i&7) == 7)
printf("\n"); printf("\n CCE %d: ");
} }
Yk = (unsigned int)rnti; Yk = (unsigned int)rnti;
......
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