nr: increase nominal p0 pusch

This commit is contained in:
Ismael Gomez 2021-10-15 12:42:32 +02:00 committed by Andre Puschmann
parent 9ace701788
commit 1d37c5b476
2 changed files with 3 additions and 3 deletions

View File

@ -328,7 +328,7 @@ int fill_serv_cell_common_from_enb_cfg(const rrc_nr_cfg_t& cfg, uint32_t cc, ser
{
auto& cell_cfg = cfg.cell_list.at(cc);
serv_common.ss_pbch_block_pwr = 0;
serv_common.ss_pbch_block_pwr = 20;
serv_common.n_timing_advance_offset_present = true;
serv_common.n_timing_advance_offset = asn1::rrc_nr::serving_cell_cfg_common_s::n_timing_advance_offset_opts::n0;
serv_common.n_timing_advance_offset_present = true;

View File

@ -1106,7 +1106,7 @@ int rrc_nr::ue::pack_recfg_with_sync_sp_cell_cfg_common_ul_cfg_common_init_ul_bw
asn1::rrc_nr::pusch_time_domain_res_alloc_s::map_type_opts::type_a;
pusch_cfg_common_pack.setup().pusch_time_domain_alloc_list[1].start_symbol_and_len = 27;
pusch_cfg_common_pack.setup().p0_nominal_with_grant_present = true;
pusch_cfg_common_pack.setup().p0_nominal_with_grant = -90;
pusch_cfg_common_pack.setup().p0_nominal_with_grant = -60;
// PUCCH config common
cell_group_cfg_pack.sp_cell_cfg.recfg_with_sync.sp_cell_cfg_common.ul_cfg_common.init_ul_bwp
@ -1116,7 +1116,7 @@ int rrc_nr::ue::pack_recfg_with_sync_sp_cell_cfg_common_ul_cfg_common_init_ul_bw
pucch_cfg_common_pack.set_setup();
pucch_cfg_common_pack.setup().pucch_group_hop = asn1::rrc_nr::pucch_cfg_common_s::pucch_group_hop_opts::neither;
pucch_cfg_common_pack.setup().p0_nominal_present = true;
pucch_cfg_common_pack.setup().p0_nominal = -90;
pucch_cfg_common_pack.setup().p0_nominal = -60;
return SRSRAN_SUCCESS;
}