Commit dae79d1f authored by laurent's avatar laurent

too strict compiler options

parent 645e1417
...@@ -705,7 +705,7 @@ int main(int argc, char **argv) ...@@ -705,7 +705,7 @@ int main(int argc, char **argv)
} }
// Configure UE // Configure UE
UE = Calloc(sizeof(PHY_VARS_NR_UE), 1); UE = calloc(sizeof(PHY_VARS_NR_UE), 1);
PHY_vars_UE_g = malloc(sizeof(PHY_VARS_NR_UE**)); PHY_vars_UE_g = malloc(sizeof(PHY_VARS_NR_UE**));
PHY_vars_UE_g[0] = malloc(sizeof(PHY_VARS_NR_UE*)); PHY_vars_UE_g[0] = malloc(sizeof(PHY_VARS_NR_UE*));
PHY_vars_UE_g[0][0] = UE; PHY_vars_UE_g[0][0] = UE;
...@@ -757,8 +757,8 @@ int main(int argc, char **argv) ...@@ -757,8 +757,8 @@ int main(int argc, char **argv)
uint32_t errors_decoding = 0; uint32_t errors_decoding = 0;
nr_scheduled_response_t scheduled_response={0} nr_scheduled_response_t scheduled_response={0};
fapi_nr_ul_config_request_t ul_config={0}; fapi_nr_ul_config_request_t ul_config={0};
fapi_nr_tx_request_t tx_req={0}; fapi_nr_tx_request_t tx_req={0};
uint8_t ptrs_mcs1 = 2; uint8_t ptrs_mcs1 = 2;
......
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