Reduced sample rates for 10 and 20 Mhz

This commit is contained in:
ismagom 2016-02-01 11:03:23 +01:00
parent ea996ea371
commit 5b6b170822
1 changed files with 4 additions and 4 deletions

View File

@ -231,11 +231,11 @@ int srslte_symbol_sz(uint32_t nof_prb) {
} else if (nof_prb<=25) {
return 384;
} else if (nof_prb<=50) {
return 768;
return 640;
} else if (nof_prb<=75) {
return 1024;
} else if (nof_prb<=100) {
return 1536;
return 1280;
} else {
return SRSLTE_ERROR;
}
@ -254,11 +254,11 @@ int srslte_nof_prb(uint32_t symbol_sz)
return 15;
case 384:
return 25;
case 768:
case 640:
return 50;
case 1024:
return 75;
case 1536:
case 1280:
return 100;
}
} else {