From 0e957a64b58ce4aa6e57bda5be049f2fd31b54e4 Mon Sep 17 00:00:00 2001 From: Laurent THOMAS <laurent.thomas@open-cells.com> Date: Mon, 10 Jun 2024 10:48:37 +0200 Subject: [PATCH] bugs introduced by this branch --- .../nr_dl_channel_estimation.c | 18 +++++++++--------- openair1/PHY/NR_UE_TRANSPORT/csi_rx.c | 16 +++++++++------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c b/openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c index 0055fb91bf..29d4b6ff08 100644 --- a/openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c +++ b/openair1/PHY/NR_UE_ESTIMATION/nr_dl_channel_estimation.c @@ -203,7 +203,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, // SNR & RSRP estimation rsrp += squaredMod(*rxF); - c16_t noiseFig = c16mulShift(ch, *pil, 15); + c16_t noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -217,7 +217,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, multaddRealVectorComplexScalar(tmp, ch, ch_tmp, 8); // SNR & RSRP estimation rsrp += squaredMod(*rxF); - c16_t noiseFig = c16mulShift(ch, *pil, 15); + c16_t noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -228,7 +228,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, multaddRealVectorComplexScalar(tmp2, ch, ch_tmp, 8); // SNR & RSRP estimation rsrp += squaredMod(*rxF); - noiseFig = c16mulShift(ch, *pil, 15); + noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -243,7 +243,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, // SNR & RSRP estimation rsrp += squaredMod(*rxF); - noiseFig = c16mulShift(ch, *pil, 15); + noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; } else if (prs_cfg->CombSize == 4) { @@ -302,7 +302,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, multaddRealVectorComplexScalar(fl, ch, ch_tmp, 16); // SNR & RSRP estimation rsrp += squaredMod(*rxF); - c16_t noiseFig = c16mulShift(ch, *pil, 15); + c16_t noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -312,7 +312,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, multaddRealVectorComplexScalar(fml, ch, ch_tmp, 16); // SNR & RSRP estimation rsrp += squaredMod(*rxF); - noiseFig = c16mulShift(ch, *pil, 15); + noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -327,7 +327,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, // SNR & RSRP estimation rsrp += squaredMod(*rxF); - c16_t noiseFig = c16mulShift(ch, *pil, 15); + c16_t noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -341,7 +341,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, multaddRealVectorComplexScalar(fmr, ch, ch_tmp, 16); // SNR & RSRP estimation rsrp += squaredMod(*rxF); - noiseFig = c16mulShift(ch, *pil, 15); + noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; pil++; @@ -352,7 +352,7 @@ int nr_prs_channel_estimation(uint8_t gNB_id, multaddRealVectorComplexScalar(fr, ch, ch_tmp, 16); // SNR & RSRP estimation rsrp += squaredMod(*rxF); - noiseFig = c16mulShift(ch, *pil, 15); + noiseFig = c16sub(*rxF, c16mulShift(ch, *pil, 15)); snr += 10 * log10(squaredMod(*rxF) - squaredMod(noiseFig)) - 10 * log10(squaredMod(noiseFig)); PRS_PRINTS; } else { diff --git a/openair1/PHY/NR_UE_TRANSPORT/csi_rx.c b/openair1/PHY/NR_UE_TRANSPORT/csi_rx.c index 2f6cb9b173..eb77d11dfe 100644 --- a/openair1/PHY/NR_UE_TRANSPORT/csi_rx.c +++ b/openair1/PHY/NR_UE_TRANSPORT/csi_rx.c @@ -326,8 +326,9 @@ static int nr_csi_rs_channel_estimation( uint64_t symbol_offset = symb*frame_parms->ofdm_symbol_size; const c16_t *tx_csi_rs_signal = &csi_rs_generated_signal[port_tx][symbol_offset + dataF_offset]; const c16_t *rx_csi_rs_signal = &csi_rs_received_signal[ant_rx][symbol_offset]; - csi_rs_ls_estimated_channel[ant_rx][port_tx][kinit] = - c16MulConjShift(tx_csi_rs_signal[k], rx_csi_rs_signal[k], nr_csi_info->csi_rs_generated_signal_bits); + c16_t *res = csi_rs_ls_estimated_channel[ant_rx][port_tx] + kinit; + *res = c16add(*res, + c16MulConjShift(tx_csi_rs_signal[k], rx_csi_rs_signal[k], nr_csi_info->csi_rs_generated_signal_bits)); } } } @@ -377,14 +378,15 @@ static int nr_csi_rs_channel_estimation( for (uint port_tx = 0; port_tx < N_ports; port_tx++) { c16_t val = csi_rs_ls_estimated_channel[ant_rx][port_tx][k]; c16_t *csi_rs_estimated_channel = &csi_rs_estimated_channel_freq[ant_rx][port_tx][k_offset]; - if (k == 0 || k == frame_parms->first_carrier_offset) { // Start of OFDM symbol case or first occupied subcarrier case + if (k == 0 || k == frame_parms->first_carrier_offset) { + // Start of OFDM symbol case or first occupied subcarrier case multaddRealVectorComplexScalar(filt24_start, val, csi_rs_estimated_channel, 24); } else if ((k + NR_NB_SC_PER_RB >= frame_parms->ofdm_symbol_size) - || (rb - == csirs_config_pdu->start_rb + csirs_config_pdu->nr_of_rbs - - 1)) { // End of OFDM symbol case or Last occupied subcarrier case + || (rb == csirs_config_pdu->start_rb + csirs_config_pdu->nr_of_rbs - 1)) { + // End of OFDM symbol case or Last occupied subcarrier case multaddRealVectorComplexScalar(filt24_end, val, csi_rs_estimated_channel - 3 * sizeof(c16_t), 24); - } else { // Middle case + } else { + // Middle case multaddRealVectorComplexScalar(filt24_middle, val, csi_rs_estimated_channel - 3 * sizeof(c16_t), 24); } } -- 2.26.2