Commit d3c1a34a authored by Florian Kaltenberger's avatar Florian Kaltenberger

Merge branch 'bugfix-27' into 'develop'

lte-ue: fix the initialization of UE NAS

The NAS UE is not initialized by the UE of lte-softmodem.
Fix this.
Signed-off-by: default avatarChun-Yeow Yeoh <yeow@tmrnd.com.my>

See merge request !3
parents 9dd329d8 e8cc09b3
...@@ -1020,6 +1020,10 @@ void *UE_thread(void *arg) ...@@ -1020,6 +1020,10 @@ void *UE_thread(void *arg)
openair0_timestamp timestamp; openair0_timestamp timestamp;
#ifdef NAS_UE
MessageDef *message_p;
#endif
#ifdef RTAI #ifdef RTAI
RT_TASK *task = rt_task_init_schmod(nam2num("UE thread"), 0, 0, 0, SCHED_FIFO, 0xF); RT_TASK *task = rt_task_init_schmod(nam2num("UE thread"), 0, 0, 0, SCHED_FIFO, 0xF);
...@@ -1075,6 +1079,11 @@ void *UE_thread(void *arg) ...@@ -1075,6 +1079,11 @@ void *UE_thread(void *arg)
printf("starting UE thread\n"); printf("starting UE thread\n");
#ifdef NAS_UE
message_p = itti_alloc_new_message(TASK_NAS_UE, INITIALIZE_MESSAGE);
itti_send_msg_to_task (TASK_NAS_UE, INSTANCE_DEFAULT, message_p);
#endif
T0 = rt_get_time_ns(); T0 = rt_get_time_ns();
first_rx = 1; first_rx = 1;
rxpos=0; rxpos=0;
......
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