From 9228f12d926755bc32e9c5bf12f4314440da9282 Mon Sep 17 00:00:00 2001 From: francescomani <email@francescomani.it> Date: Thu, 26 May 2022 13:47:17 +0200 Subject: [PATCH] bugfix --- openair2/LAYER2/NR_MAC_COMMON/nr_compute_tbs_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openair2/LAYER2/NR_MAC_COMMON/nr_compute_tbs_common.c b/openair2/LAYER2/NR_MAC_COMMON/nr_compute_tbs_common.c index 910d2272b73..1acf23197c7 100644 --- a/openair2/LAYER2/NR_MAC_COMMON/nr_compute_tbs_common.c +++ b/openair2/LAYER2/NR_MAC_COMMON/nr_compute_tbs_common.c @@ -72,7 +72,7 @@ uint32_t nr_compute_tbs(uint16_t Qm, n = log2(Ninfo-24)-5; Np_info = max(3840, (ROUNDIDIV((Ninfo-24),(1<<n)))<<n); - if (R <= 256) { + if (R <= 2560) { C = CEILIDIV((Np_info+24),3816); nr_tbs = (C<<3)*CEILIDIV((Np_info+24),(C<<3)) - 24; } else { -- GitLab