Commit dd760540 authored by Cedric Roux's avatar Cedric Roux

hacks for NR

- send RRC Connection Reconfiguration with dummy ENDC data by doing:
  telnet localhost 9001
  and press enter when the ENDC UE is connected to the eNB to send it
parent ff379fe0
......@@ -1568,6 +1568,7 @@ set(L2_SRC
${RLC_DIR}/rlc_mpls.c
# ${RRC_DIR}/rrc_UE.c
${RRC_DIR}/rrc_eNB.c
${RRC_DIR}/rrc_eNB_endc.c
${RRC_DIR}/rrc_eNB_S1AP.c
${RRC_DIR}/rrc_eNB_UE_context.c
${RRC_DIR}/rrc_common.c
......
......@@ -9121,11 +9121,20 @@ rrc_enb_task(
//-----------------------------------------------------------------------------
{
rrc_enb_init();
void rrc_endc_hack_init(void);
rrc_endc_hack_init();
itti_mark_task_ready(TASK_RRC_ENB);
LOG_I(RRC,"Entering main loop of RRC message task\n");
while (1) {
(void) rrc_enb_process_itti_msg(NULL);
{
extern volatile int go_nr;
void rrc_go_nr(void);
if (go_nr) rrc_go_nr();
}
}
}
......
This diff is collapsed.
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