Commit fd1ca9cf authored by Florian Kaltenberger's avatar Florian Kaltenberger

fixing a bug in nr_pbch_extract

parent 377bbaef
...@@ -91,7 +91,7 @@ uint16_t nr_pbch_extract(int **rxdataF, ...@@ -91,7 +91,7 @@ uint16_t nr_pbch_extract(int **rxdataF,
for (rb=0; rb<20; rb++) { for (rb=0; rb<20; rb++) {
j=0; j=0;
if (symbol==1 || symbol==7) { if (symbol==1 || symbol==3) {
for (i=0; i<12; i++) { for (i=0; i<12; i++) {
if ((i!=nushiftmod4) && if ((i!=nushiftmod4) &&
(i!=(nushiftmod4+4)) && (i!=(nushiftmod4+4)) &&
...@@ -147,7 +147,7 @@ uint16_t nr_pbch_extract(int **rxdataF, ...@@ -147,7 +147,7 @@ uint16_t nr_pbch_extract(int **rxdataF,
for (rb=0; rb<20; rb++) { for (rb=0; rb<20; rb++) {
j=0; j=0;
if (symbol==1 || symbol==7) { if (symbol==1 || symbol==3) {
for (i=0; i<12; i++) { for (i=0; i<12; i++) {
if ((i!=nushiftmod4) && if ((i!=nushiftmod4) &&
(i!=(nushiftmod4+4)) && (i!=(nushiftmod4+4)) &&
......
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