From 4f7a94acb6251f1ac0d7f3a0587fbaf5140e3a0f Mon Sep 17 00:00:00 2001 From: Xavier Arteaga Date: Tue, 1 Jun 2021 15:06:48 +0200 Subject: [PATCH] Fix comment --- lib/src/phy/phch/pdcch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/phy/phch/pdcch.c b/lib/src/phy/phch/pdcch.c index 3d2e79d48..533a713fa 100644 --- a/lib/src/phy/phch/pdcch.c +++ b/lib/src/phy/phch/pdcch.c @@ -386,7 +386,7 @@ int srsran_pdcch_decode_msg(srsran_pdcch_t* q, srsran_dl_sf_cfg_t* sf, srsran_dc } double threshold = SRSRAN_MAX(0.3f, (2.0 / 3.0) * fabsf(q->llr[msg->location.ncce * 72 + max_i])); - // Compute Root mean square of the LLRs + // Compute absolute mean of the LLRs double mean = 0; for (int i = 0; i < e_bits; i++) { mean += fabsf(q->llr[msg->location.ncce * 72 + i]);