phy_common: fix symbol size derivation for NR-only cells

make sure that 52 PRB cell with LTE rates gives 15.36e6 as sample rate
master
Andre Puschmann 3 years ago
parent 40809fb10e
commit 779bfcf791

@ -338,9 +338,9 @@ int srsran_symbol_sz_power2(uint32_t nof_prb)
return 256;
} else if (nof_prb <= 25) {
return 512;
} else if (nof_prb <= 50) {
} else if (nof_prb <= 52) {
return 1024;
} else if (nof_prb <= 75) {
} else if (nof_prb <= 79) {
return 1536;
} else if (nof_prb <= 110) {
return 2048;

Loading…
Cancel
Save