Commit d6ea4987 authored by Y_Tomita's avatar Y_Tomita

Set ue->rx_offset = 0 in case of Basic simulator.

parent fd8b984c
...@@ -476,6 +476,11 @@ int initial_sync(PHY_VARS_UE *ue, runmode_t mode) ...@@ -476,6 +476,11 @@ int initial_sync(PHY_VARS_UE *ue, runmode_t mode)
if (ret==0) { // PBCH found so indicate sync to higher layers and configure frame parameters if (ret==0) { // PBCH found so indicate sync to higher layers and configure frame parameters
#if BASIC_SIMULATOR
/* a hack without which the UE does not connect (to be fixed somehow) */
ue->rx_offset = 0;
#endif
//#ifdef DEBUG_INITIAL_SYNCH //#ifdef DEBUG_INITIAL_SYNCH
#if DISABLE_LOG_X #if DISABLE_LOG_X
printf("[UE%d] In synch, rx_offset %d samples\n",ue->Mod_id, ue->rx_offset); printf("[UE%d] In synch, rx_offset %d samples\n",ue->Mod_id, ue->rx_offset);
......
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