Commit 09204ef5 authored by Matthieu Kanj's avatar Matthieu Kanj

replacing NB_common_signal_procedures by common_signal_procedures_NB_IoT

parent e516cd63
...@@ -15,7 +15,7 @@ void process_schedule_rsp(Sched_Rsp_t *sched_rsp, ...@@ -15,7 +15,7 @@ void process_schedule_rsp(Sched_Rsp_t *sched_rsp,
void NB_phy_procedures_eNB_uespec_RX(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc, UL_IND_t *UL_INFO); void NB_phy_procedures_eNB_uespec_RX(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc, UL_IND_t *UL_INFO);
/* For NB-IoT, we put NPBCH in later part, since it would be scheduled by MAC scheduler,this generates NRS/NPSS/NSSS*/ /* For NB-IoT, we put NPBCH in later part, since it would be scheduled by MAC scheduler,this generates NRS/NPSS/NSSS*/
void NB_common_signal_procedures (PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc); void common_signal_procedures_NB_IoT(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc);
/*Generate the ulsch params and do the mapping for the FAPI style parameters to OAI, and then do the packing*/ /*Generate the ulsch params and do the mapping for the FAPI style parameters to OAI, and then do the packing*/
void NB_generate_eNB_ulsch_params(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc,nfapi_hi_dci0_request_pdu_t *hi_dci0_pdu); void NB_generate_eNB_ulsch_params(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc,nfapi_hi_dci0_request_pdu_t *hi_dci0_pdu);
......
...@@ -103,7 +103,7 @@ extern int rx_sig_fifo; ...@@ -103,7 +103,7 @@ extern int rx_sig_fifo;
* It generates NRS/NPSS/NSSS * It generates NRS/NPSS/NSSS
* *
*/ */
void NB_common_signal_procedures (PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc) void common_signal_procedures_NB_IoT(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc)
{ {
NB_IoT_DL_FRAME_PARMS *fp=&eNB->frame_parms; NB_IoT_DL_FRAME_PARMS *fp=&eNB->frame_parms;
int **txdataF = eNB->common_vars.txdataF[0]; int **txdataF = eNB->common_vars.txdataF[0];
...@@ -966,7 +966,7 @@ void NB_phy_procedures_eNB_TX(PHY_VARS_eNB *eNB, ...@@ -966,7 +966,7 @@ void NB_phy_procedures_eNB_TX(PHY_VARS_eNB *eNB,
} }
//generate NPSS/NSSS //generate NPSS/NSSS
NB_common_signal_procedures(eNB,proc); common_signal_procedures_NB_IoT(eNB,proc);
//Generate MIB //Generate MIB
if(subframe==0 && (eNB->npbch != NULL)) if(subframe==0 && (eNB->npbch != NULL))
......
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