Commit f1c5ad1a authored by Cedric Roux's avatar Cedric Roux

Revert "Remove some pointers in fapi structures."

This reverts commit 2aab8b6d.

Let's see later what to do with this problem (if it is a problem at all).
parent 61a988e5
...@@ -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_RLC_PDU_LIST][MAX_TB_LIST]; struct RlcPduListElement_s *rlcPduList[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[MAX_BUILD_DATA_LIST]; struct BuildDataListElement_s *buildDataList;
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