Skip to content
Snippets Groups Projects
Commit 9def6e81 authored by Roberto Louro Magueta's avatar Roberto Louro Magueta
Browse files

Merge remote-tracking branch 'origin/develop-2x2-segFault' into develop-CSI-Measurements

parents 27bac2f2 31319e80
No related branches found
No related tags found
3 merge requests!1757Draft: Use pMAX value in configuration file, instead of hardcoded '23' in asn1_msg.c,!1630integration_2022_wk30b,!1528CSI Feedback
...@@ -541,8 +541,8 @@ int nr_initial_sync(UE_nr_rxtx_proc_t *proc, ...@@ -541,8 +541,8 @@ int nr_initial_sync(UE_nr_rxtx_proc_t *proc,
int coreset_start_rb=0; int coreset_start_rb=0;
// Hold the channel estimates in frequency domain. // Hold the channel estimates in frequency domain.
int32_t pdcch_est_size = fp->symbols_per_slot*(fp->ofdm_symbol_size+LTE_CE_FILTER_LENGTH); int32_t pdcch_est_size = ((((fp->symbols_per_slot*(fp->ofdm_symbol_size+LTE_CE_FILTER_LENGTH))+15)/16)*16);
int32_t pdcch_dl_ch_estimates[4*fp->nb_antennas_rx][pdcch_est_size]; __attribute__ ((aligned(16))) int32_t pdcch_dl_ch_estimates[4*fp->nb_antennas_rx][pdcch_est_size];
for(int n_ss = 0; n_ss<phy_pdcch_config.nb_search_space; n_ss++) { for(int n_ss = 0; n_ss<phy_pdcch_config.nb_search_space; n_ss++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment