Skip to content

Commit 8082587

Browse files
pgawlowiczcodebot
authored andcommitted
config: fix cset1_l_crb size for the case with fallback DCI formats
1 parent 718d2ab commit 8082587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/gnb/gnb_appconfig_translators.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ std::vector<du_cell_config> srsran::generate_du_cell_config(const gnb_appconfig&
325325
// UE decoding the DCI in CSS rather than USS when using fallback DCI formats (DCI format 1_0 and 0_0).
326326
cset1_start_crb = 6;
327327
}
328-
unsigned cset1_l_crb = nof_crbs;
328+
unsigned cset1_l_crb = nof_crbs - cset1_start_crb;
329329
if (config.common_cell_cfg.pdcch_cfg.dedicated.coreset1_l_crb.has_value()) {
330330
cset1_l_crb = config.common_cell_cfg.pdcch_cfg.dedicated.coreset1_l_crb.value();
331331
}

0 commit comments

Comments
 (0)