PDSCH overlaps PDCCH

When configuring CORESET 0 with 2 symbols, the PDSCH may overlap PDCCH because the condition is only (https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/develop/openair2/RRC/NR/nr_rrc_config.c?ref_type=heads#L783):

int len_coreset = 1;
  if (curr_bwp < 48)
    len_coreset = 2;

However, we may configure CORESET 0 with 2 symbols even for higher number of PRBs (example, for FR2 where the number of PRBs is usually lower, SCS is higher). Example where it overlaps in Msg4:

Msg4: msg4_tda.nrOfSymbols: 13, msg4_tda.startSymbolIndex: 1
Msg4: rbStart: 0, rbSize: 24
Msg4: ra->sched_pdcch.DurationSymbols: 2

In theory, all Msg4 will overlap the CORESET 0 when it has 2 symbols duration and BWP size >= 48, to be confirmed...

Edited by Luis Pereira