Commit f398e499 authored by Ahmed Hussein's avatar Ahmed Hussein Committed by Thomas Schlichter

Set start_rb to 0

- start_rb was set to 30, and nb_rb was set to 50 with NB_RB_DL = 106.
- When the DC subcarrier is included in the RB allocation,
  this causes errors in FFT/IFFT operations arounf the DC subcarrier
- This leads to errors in unscrambling and decoding
parent 2660f4ea
......@@ -110,7 +110,7 @@ int main(int argc, char **argv)
int tx_offset;
double txlev_float;
int32_t txlev;
int start_rb = 30;
int start_rb = 0;
int UE_id =0; // [hna] only works for UE_id = 0 because NUMBER_OF_NR_UE_MAX is set to 1 (phy_init_nr_gNB causes segmentation fault)
......
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