rrc,nr: increase msg5 timer to 5s and inactivity...

timer to 10s

Signed-off-by: Carlo Galiotto <carlo@srs.io>
This commit is contained in:
Carlo Galiotto 2021-10-26 22:22:54 +02:00 committed by carlo-gal
parent 0d67fbc36c
commit 5972345c9d
1 changed files with 2 additions and 2 deletions

View File

@ -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);