Commit 260a4c13 authored by Guy De Souza's avatar Guy De Souza

Array size bug fix

parent 3e8b0dce
...@@ -120,7 +120,7 @@ int phy_init_nr_gNB(PHY_VARS_gNB *gNB, ...@@ -120,7 +120,7 @@ int phy_init_nr_gNB(PHY_VARS_gNB *gNB,
nr_init_pbch_dmrs(gNB); nr_init_pbch_dmrs(gNB);
// Polar encoder init for PBCH // Polar encoder init for PBCH
nr_polar_init(&gNB->nrPolar_params, nr_polar_init(&gNB->nrPolar_params,
NR_POLAR_PBCH_MESSAGE_TYPE, NR_POLAR_PBCH_MESSAGE_TYPE,
NR_POLAR_PBCH_PAYLOAD_BITS, NR_POLAR_PBCH_PAYLOAD_BITS,
NR_POLAR_PBCH_AGGREGATION_LEVEL); NR_POLAR_PBCH_AGGREGATION_LEVEL);
......
...@@ -226,5 +226,4 @@ void nr_fill_dci_and_dlsch(PHY_VARS_gNB *gNB, ...@@ -226,5 +226,4 @@ void nr_fill_dci_and_dlsch(PHY_VARS_gNB *gNB,
AssertFatal(1==0, "[nr_fill_dci_and_dlsch] Incorrect DCI Format(%d)",rel15->dci_format); AssertFatal(1==0, "[nr_fill_dci_and_dlsch] Incorrect DCI Format(%d)",rel15->dci_format);
}*/ }*/
return;
} }
...@@ -61,7 +61,7 @@ typedef struct { ...@@ -61,7 +61,7 @@ typedef struct {
typedef struct { typedef struct {
uint8_t num_dci; uint8_t num_dci;
NR_gNB_DCI_ALLOC_t dci_alloc[32]; NR_gNB_DCI_ALLOC_t dci_alloc[256];
} NR_gNB_PDCCH; } NR_gNB_PDCCH;
typedef struct { typedef struct {
......
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