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.
This commit is contained in:
Andre Puschmann 2021-04-26 10:08:48 +02:00
parent 20575d3eec
commit a083b0da2a
1 changed files with 1 additions and 1 deletions

View File

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