From a083b0da2a25af16721052da363b4ca18677d571 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Mon, 26 Apr 2021 10:08:48 +0200 Subject: [PATCH] proc_ra: only log warning if RAR wasn't received in window lead to some failing tests with RF where PRACH wasn't received correctly. recovery machanism will retransmit PRACH. --- srsue/src/stack/mac/proc_ra.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srsue/src/stack/mac/proc_ra.cc b/srsue/src/stack/mac/proc_ra.cc index dfce36cf7..ad150fd32 100644 --- a/srsue/src/stack/mac/proc_ra.cc +++ b/srsue/src/stack/mac/proc_ra.cc @@ -169,7 +169,7 @@ void ra_proc::state_response_reception(uint32_t tti) if (!rar_received) { uint32_t interval = srsran_tti_interval(tti, ra_tti + 3 + rach_cfg.responseWindowSize - 1); if (interval > 0 && interval < 100) { - logger.error("RA response not received within the response window"); + logger.warning("RA response not received within the response window"); response_error(); } }