Commit 374d00d8 authored by Raymond Knopp's avatar Raymond Knopp

removal of warnings during configuration

parent b27ed63f
......@@ -757,7 +757,7 @@ int RCconfig_RRC(MessageDef *msg_p, uint32_t i, eNB_RRC_INST *rrc) {
int si_Narrowband_r13 = 0;
int si_TBS_r13 = 0;
int systemInfoValueTagSi_r13 = 0;
// int systemInfoValueTagSi_r13 = 0;
int firstPreamble_r13 = 0;
int lastPreamble_r13 = 0;
......@@ -773,7 +773,7 @@ int RCconfig_RRC(MessageDef *msg_p, uint32_t i, eNB_RRC_INST *rrc) {
int numRepetitionPerPreambleAttempt_r13 = 0;
int mpdcch_NumRepetition_RA_r13 = 0;
int prach_HoppingConfig_r13 = 0;
int *maxavailablenarrowband = NULL;
//int *maxavailablenarrowband = NULL;
int pucch_info_value = 0;
int paging_narrowbands_r13 = 0;
......@@ -799,12 +799,12 @@ int RCconfig_RRC(MessageDef *msg_p, uint32_t i, eNB_RRC_INST *rrc) {
int sib2_mpdcch_pdsch_hoppingOffset_r13 = 0;
int pusch_HoppingOffset_v1310 = 0;
//int pusch_HoppingOffset_v1310 = 0;
int hyperSFN_r13 = 0;
int eDRX_Allowed_r13 = 0;
//int hyperSFN_r13 = 0;
//int eDRX_Allowed_r13 = 0;
int q_RxLevMinCE_r13 = 0;
int q_QualMinRSRQ_CE_r13 = 0;
//int q_QualMinRSRQ_CE_r13 = 0;
char *si_WindowLength_BR_r13 = NULL;
char *si_RepetitionPattern_r13 = NULL;
int startSymbolBR_r13 = 0;
......@@ -3654,8 +3654,7 @@ int RCconfig_X2(MessageDef *msg_p, uint32_t i) {
pucch_nRB_CQI, pucch_nCS_AN, pucch_n1_AN, pdsch_referenceSignalPower,
pdsch_p_b, pusch_n_SB, pusch_hoppingOffset, pusch_groupAssignment,
pusch_nDMRS1, srs_BandwidthConfig, srs_SubframeConfig, pusch_p0_Nominal,
pucch_p0_Nominal, msg3_delta_Preamble;
char *rach_numberOfRA_Preambles;
pucch_p0_Nominal, msg3_delta_Preamble,rach_numberOfRA_Preambles;
int32_t rach_sizeOfRA_PreamblesGroupA, rach_messageSizeGroupA,
rach_powerRampingStep, rach_preambleInitialReceivedTargetPower,
rach_preambleTransMax, rach_raResponseWindowSize,
......
This diff is collapsed.
......@@ -200,7 +200,7 @@ init_SI(
AssertFatal(RC.rrc[ctxt_pP->module_id]->carrier[CC_id].SIB1!=NULL,PROTOCOL_RRC_CTXT_FMT" init_SI: FATAL, no memory for SIB1 allocated\n",
PROTOCOL_RRC_CTXT_ARGS(ctxt_pP));
puts("[DEBUGGING][KOGO] --- Calling SIB1");
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].sizeof_SIB1 = do_SIB1(&RC.rrc[ctxt_pP->module_id]->carrier[CC_id],ctxt_pP->module_id,CC_id
#if (RRC_VERSION >= MAKE_VERSION(14, 0, 0))
,FALSE
......@@ -217,7 +217,6 @@ init_SI(
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].sizeof_SIB1_BR = 0;
if (configuration->schedulingInfoSIB1_BR_r13[CC_id]>0) {
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].SIB1_BR = (uint8_t*) malloc16(32);
puts("[DEBUGGING][KOGO] --- Calling SIB1 -- second time");
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].sizeof_SIB1_BR = do_SIB1(&RC.rrc[ctxt_pP->module_id]->carrier[CC_id],ctxt_pP->module_id,CC_id
,TRUE
#if defined(ENABLE_ITTI)
......@@ -229,7 +228,6 @@ init_SI(
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].SIB23 = (uint8_t*) malloc16(64);
AssertFatal(RC.rrc[ctxt_pP->module_id]->carrier[CC_id].SIB23!=NULL,"cannot allocate memory for SIB");
puts("[DEBUGGING][KOGO] ---> Calling SIB23 ---> first time");
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].sizeof_SIB23 = do_SIB23(
ctxt_pP->module_id,
CC_id
......@@ -248,7 +246,6 @@ init_SI(
if (configuration->schedulingInfoSIB1_BR_r13[CC_id]>0) {
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].SIB23_BR = (uint8_t*) malloc16(64);
AssertFatal(RC.rrc[ctxt_pP->module_id]->carrier[CC_id].SIB23_BR!=NULL,"cannot allocate memory for SIB");
puts("[DEBUGGING][KOGO] ---> Calling SIB23 ---> second time");
RC.rrc[ctxt_pP->module_id]->carrier[CC_id].sizeof_SIB23_BR = do_SIB23(
ctxt_pP->module_id,
CC_id
......
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