Commit 1842a727 authored by Guy De Souza's avatar Guy De Souza

Printout formatting

parent 57066055
...@@ -166,7 +166,7 @@ void nr_pbch_scrambling(NR_gNB_PBCH *pbch, ...@@ -166,7 +166,7 @@ void nr_pbch_scrambling(NR_gNB_PBCH *pbch,
reset = 0; reset = 0;
} }
#ifdef DEBUG_PBCH_ENCODING #ifdef DEBUG_PBCH_ENCODING
printf("s: %04x\n", s); printf("\ts: %04x\t", s);
#endif #endif
if (bitwise) { if (bitwise) {
(*pbch_a_prime) ^= ((unscrambling_mask>>i)&1)? (((*pbch_a_interleaved)>>i)&1)<<i : ((((*pbch_a_interleaved)>>i)&1) ^ ((s>>((i+offset)&0x1f))&1))<<i; (*pbch_a_prime) ^= ((unscrambling_mask>>i)&1)? (((*pbch_a_interleaved)>>i)&1)<<i : ((((*pbch_a_interleaved)>>i)&1) ^ ((s>>((i+offset)&0x1f))&1))<<i;
...@@ -273,7 +273,7 @@ int nr_generate_pbch(NR_gNB_PBCH *pbch, ...@@ -273,7 +273,7 @@ int nr_generate_pbch(NR_gNB_PBCH *pbch,
#ifdef DEBUG_PBCH_ENCODING #ifdef DEBUG_PBCH_ENCODING
printf("Channel coding:\n"); printf("Channel coding:\n");
for (int i=0; i<NR_POLAR_PBCH_E>>3; i++) for (int i=0; i<NR_POLAR_PBCH_E>>3; i++)
printf("pbch_e[%d]: 0x%04x", i, pbch->pbch_e[i]); printf("\tpbch_e[%d]: 0x%04x\t", i, pbch->pbch_e[i]);
printf("\n"); printf("\n");
#endif #endif
...@@ -284,7 +284,7 @@ int nr_generate_pbch(NR_gNB_PBCH *pbch, ...@@ -284,7 +284,7 @@ int nr_generate_pbch(NR_gNB_PBCH *pbch,
#ifdef DEBUG_PBCH_ENCODING #ifdef DEBUG_PBCH_ENCODING
printf("Scrambling:\n"); printf("Scrambling:\n");
for (int i=0; i<NR_POLAR_PBCH_E>>3; i++) for (int i=0; i<NR_POLAR_PBCH_E>>3; i++)
printf("pbch_e[%d]: 0x%04x", i, pbch->pbch_e[i]); printf("\tpbch_e[%d]: 0x%04x\t", i, pbch->pbch_e[i]);
printf("\n"); printf("\n");
#endif #endif
......
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