Commit ce511b96 authored by wujing's avatar wujing

fix FDD/TDD C-Plane NG when using RCC and RRU

parent 054cea6d
......@@ -697,6 +697,7 @@ schedule_SI(module_id_t module_idP, frame_t frameP, sub_frame_t subframeP)
LOG_D(MAC, "Frame %d: Subframe %d : Adding common DCI for S_RNTI\n", frameP, subframeP);
dl_req->number_dci++;
dl_req->number_pdu++;
dl_req->tl.tag = NFAPI_DL_CONFIG_REQUEST_BODY_TAG;
dl_config_pdu = &dl_req->dl_config_pdu_list[dl_req->number_pdu];
memset((void *) dl_config_pdu, 0,
sizeof(nfapi_dl_config_request_pdu_t));
......
......@@ -947,7 +947,7 @@ void init_eNB_proc(int inst) {
}
else if (nfapi_mode == 2) { // this is neccesary in VNF or L2 FAPI simulator.
pthread_create( &L1_proc->pthread, attr0, L1_thread, L1_proc);
pthread_create( &L1_proc_tx->pthread, attr1, L1_thread_tx, proc);
pthread_create( &L1_proc_tx->pthread, attr1, L1_thread, L1_proc_tx);
}
pthread_create( &proc->pthread_prach, attr_prach, eNB_thread_prach, eNB );
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 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