From 5972345c9dc65b2b1848c7bba822985ec3b85556 Mon Sep 17 00:00:00 2001 From: Carlo Galiotto Date: Tue, 26 Oct 2021 22:22:54 +0200 Subject: [PATCH] rrc,nr: increase msg5 timer to 5s and inactivity... timer to 10s Signed-off-by: Carlo Galiotto --- srsenb/src/stack/rrc/rrc_nr.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srsenb/src/stack/rrc/rrc_nr.cc b/srsenb/src/stack/rrc/rrc_nr.cc index 9b63296cf..2f4c603ce 100644 --- a/srsenb/src/stack/rrc/rrc_nr.cc +++ b/srsenb/src/stack/rrc/rrc_nr.cc @@ -583,11 +583,11 @@ void rrc_nr::ue::set_activity_timeout(activity_timeout_type_t type) break; case MSG5_RX_TIMEOUT: // TODO: Retrieve the parameters from somewhere(RRC?) - Currently hardcoded to 1s - deadline_ms = 1000; + deadline_ms = 5000; break; case UE_INACTIVITY_TIMEOUT: // TODO: Retrieve the parameters from somewhere(RRC?) - Currently hardcoded to 5s - deadline_ms = 5000; + deadline_ms = 10000; break; default: parent->logger.error("Unknown timeout type %d", type);