From 27a64b4d58e5e597f1e4f2dc1c56571bfd76fe27 Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Wed, 6 Jun 2018 20:09:14 -0700 Subject: [PATCH] Decrease PUCCH threshold causing SR failure in bad SNR conditions --- srsenb/src/phy/phch_worker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsenb/src/phy/phch_worker.cc b/srsenb/src/phy/phch_worker.cc index cb1d27360..19291fac0 100644 --- a/srsenb/src/phy/phch_worker.cc +++ b/srsenb/src/phy/phch_worker.cc @@ -148,7 +148,7 @@ void phch_worker::init(phch_common* phy_, srslte::log *log_h_) } srslte_softbuffer_tx_reset(&temp_mbsfn_softbuffer); - srslte_pucch_set_threshold(&enb_ul.pucch, 0.8); + srslte_pucch_set_threshold(&enb_ul.pucch, 0.5); srslte_sch_set_max_noi(&enb_ul.pusch.ul_sch, phy->params.pusch_max_its); srslte_enb_dl_set_amp(&enb_dl, phy->params.tx_amplitude);