Commit 125e0aa1 authored by Melissa Elkadi's avatar Melissa Elkadi

Updating incorrect logic in phy_stub_ue.c

parent 2c8aab06
...@@ -1325,11 +1325,7 @@ void *ue_standalone_pnf_task(void *context) ...@@ -1325,11 +1325,7 @@ void *ue_standalone_pnf_task(void *context)
abort(); abort();
} }
uint16_t sf = ch_info.sfn_sf & 15; uint16_t sf = ch_info.sfn_sf & 15;
if (sf > 10 && sf < 0) assert(sf < 10);
{
LOG_E(MAC, "sf out of bounds, sfn: %d\n", sf);
abort();
}
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment