Commit fd3c5cce authored by Cedric Roux's avatar Cedric Roux

force MAX_NUM_CCs to 2 in ff-mac-sched-sap.h/ff-mac-csched-sap.h

to fit libscheduler.a
parent 82b4dba2
...@@ -58,7 +58,8 @@ extern "C" { ...@@ -58,7 +58,8 @@ extern "C" {
struct CschedCellConfigReqParameters struct CschedCellConfigReqParameters
{ {
uint8_t nr_carriers; uint8_t nr_carriers;
struct CschedCellConfigReqParametersListElement* ccConfigList[MAX_NUM_CCs]; #warning MAX_NUM_CCs forced to 2 in structure CschedCellConfigReqParameters!!
struct CschedCellConfigReqParametersListElement* ccConfigList[2 /*MAX_NUM_CCs*/];
uint8_t nr_vendorSpecificList; uint8_t nr_vendorSpecificList;
struct VendorSpecificListElement_s *vendorSpecificList; struct VendorSpecificListElement_s *vendorSpecificList;
}; };
...@@ -198,7 +199,8 @@ struct CschedUeConfigReqParameters ...@@ -198,7 +199,8 @@ struct CschedUeConfigReqParameters
bool crossCarrierSchedSupport; bool crossCarrierSchedSupport;
uint8_t pcellCarrierIndex; uint8_t pcellCarrierIndex;
uint8_t nr_scells; uint8_t nr_scells;
struct ScellConfig_s* scellConfigList[MAX_NUM_CCs-1]; #warning MAX_NUM_CCs forced to 2 in structure CschedUeConfigReqParameters!!
struct ScellConfig_s* scellConfigList[2 /* MAX_NUM_CCs */ -1];
uint8_t scellDeactivationTimer; uint8_t scellDeactivationTimer;
uint8_t nr_vendorSpecificList; uint8_t nr_vendorSpecificList;
......
...@@ -235,7 +235,8 @@ struct SchedDlConfigIndParameters ...@@ -235,7 +235,8 @@ struct SchedDlConfigIndParameters
/* mind: this is just number of elems in the next array (not actual number of PDCCH OFDM symbols) */ /* mind: this is just number of elems in the next array (not actual number of PDCCH OFDM symbols) */
uint8_t nr_ofdmSymbolsCount; uint8_t nr_ofdmSymbolsCount;
struct PdcchOfdmSymbolCountListElement_s* nrOfPdcchOfdmSymbols[MAX_NUM_CCs]; #warning MAX_NUM_CCs forced to 2 in structure SchedDlConfigIndParameters!!
struct PdcchOfdmSymbolCountListElement_s* nrOfPdcchOfdmSymbols[2 /* MAX_NUM_CCs */];
uint8_t nr_vendorSpecificList; uint8_t nr_vendorSpecificList;
struct VendorSpecificListElement_s *vendorSpecificList; struct VendorSpecificListElement_s *vendorSpecificList;
......
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