Commit 2aab8b6d authored by Cedric Roux's avatar Cedric Roux

Remove some pointers in fapi structures.

We may discuss about this, I personally prefer to avoid
memory allocations.
parent 7c9a7042
...@@ -271,7 +271,7 @@ struct BuildDataListElement_s ...@@ -271,7 +271,7 @@ struct BuildDataListElement_s
* ceBitmap[0] = ff_TA; ceBitmap[1] = ff_DRX | ff_AD; */ * ceBitmap[0] = ff_TA; ceBitmap[1] = ff_DRX | ff_AD; */
uint8_t ceBitmap[MAX_TB_LIST]; uint8_t ceBitmap[MAX_TB_LIST];
uint8_t nr_rlcPDU_List; uint8_t nr_rlcPDU_List;
struct RlcPduListElement_s *rlcPduList[MAX_TB_LIST]; struct RlcPduListElement_s rlcPduList[MAX_RLC_PDU_LIST][MAX_TB_LIST];
uint8_t servCellIndex; //definition according to 36.331 'ServCellIndex' uint8_t servCellIndex; //definition according to 36.331 'ServCellIndex'
/* Hex content of Activation/Deactivation MAC CE */ /* Hex content of Activation/Deactivation MAC CE */
uint8_t activationDeactivationCE; uint8_t activationDeactivationCE;
......
...@@ -229,7 +229,7 @@ struct SchedDlConfigIndParameters ...@@ -229,7 +229,7 @@ struct SchedDlConfigIndParameters
uint8_t nr_buildDataList; uint8_t nr_buildDataList;
uint8_t nr_buildRARList; uint8_t nr_buildRARList;
uint8_t nr_buildBroadcastList; uint8_t nr_buildBroadcastList;
struct BuildDataListElement_s *buildDataList; struct BuildDataListElement_s buildDataList[MAX_BUILD_DATA_LIST];
struct BuildRarListElement_s *buildRarList; struct BuildRarListElement_s *buildRarList;
struct BuildBroadcastListElement_s *buildBroadcastList; struct BuildBroadcastListElement_s *buildBroadcastList;
......
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