Commit 6010c7fd authored by Nick Ho's avatar Nick Ho

Managing the TX

parent f7236598
......@@ -7,6 +7,11 @@
#include "PHY/defs_nb_iot.h"
#include "openair2/PHY_INTERFACE/IF_Module_nb_iot.h"
void process_schedule_rsp(Sched_Rsp_t *sched_rsp,
PHY_VARS_eNB *eNB,
eNB_rxtx_proc_NB_t *proc,
const int UE_id);
/*Processing the ue-specific resources for uplink in NB-IoT*/
void NB_phy_procedures_eNB_uespec_RX(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc, UL_IND_t *UL_INFO);
......
......@@ -572,6 +572,24 @@ void NB_generate_eNB_ulsch_params(PHY_VARS_eNB *eNB,eNB_rxtx_proc_t *proc,Sched_
}
/*
* process the following message
*
*/
void process_schedule_rsp(Sched_Rsp_t *sched_rsp,
PHY_VARS_eNB *eNB,
eNB_rxtx_proc_NB_t *proc,
const int UE_id)
{
// check for the MIB (process N-BCH PDU)
if(sched_rsp->NB_DL.NB_BCH.MIB_pdu.segments[0].segment_data)!=NULL)
{
}
}
extern int oai_exit;
......
......@@ -174,13 +174,15 @@ typedef struct{
typedef struct{
// these structures contains both instruction and PDUs itself
npdcch_t NB_DCI;
npdsch_t NB_DLSCH;
npbch_t NB_BCH;
nulsch_t NB_UL;
nulsch_t NB_UL_config;
}NB_DL_t;
......
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