Commit 09691779 authored by Guy De Souza's avatar Guy De Souza

ilv j indexes increment

parent d5893eea
...@@ -200,9 +200,9 @@ uint8_t nr_init_pbch_interleaver(uint8_t *interleaver) { ...@@ -200,9 +200,9 @@ uint8_t nr_init_pbch_interleaver(uint8_t *interleaver) {
else if (i==28) // Hrf bit else if (i==28) // Hrf bit
*(interleaver+j_hrf) = *(nr_pbch_payload_interleaving_pattern+i); *(interleaver+j_hrf) = *(nr_pbch_payload_interleaving_pattern+i);
else if (i>28) // Ssb bits else if (i>28) // Ssb bits
*(interleaver+j_ssb) = *(nr_pbch_payload_interleaving_pattern+i); *(interleaver+j_ssb++) = *(nr_pbch_payload_interleaving_pattern+i);
else else
*(interleaver+j_other) = *(nr_pbch_payload_interleaving_pattern+i); *(interleaver+j_other++) = *(nr_pbch_payload_interleaving_pattern+i);
} }
/*This pattern takes into account the adjustments for the field specific counters j_sfn, j_hrf, j_ssb and j_other*/ /*This pattern takes into account the adjustments for the field specific counters j_sfn, j_hrf, j_ssb and j_other*/
......
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