Commit 863675dd authored by Melissa's avatar Melissa

Fixed two bugs

There was a variable that was being used that was undefined.
Also fixed save_dci_pdu_for_crnti() function.
parent 725a9a06
This diff is collapsed.
...@@ -53,6 +53,7 @@ typedef struct ...@@ -53,6 +53,7 @@ typedef struct
float sinr; float sinr;
uint16_t pdu_size; uint16_t pdu_size;
bool drop_flag[256]; bool drop_flag[256];
bool latest;
} sf_rnti_mcs_s; } sf_rnti_mcs_s;
...@@ -200,10 +201,6 @@ char *nfapi_ul_config_req_to_string(nfapi_ul_config_request_t *req); ...@@ -200,10 +201,6 @@ char *nfapi_ul_config_req_to_string(nfapi_ul_config_request_t *req);
const char *dl_pdu_type_to_string(uint8_t pdu_type); const char *dl_pdu_type_to_string(uint8_t pdu_type);
const char *ul_pdu_type_to_string(uint8_t pdu_type); const char *ul_pdu_type_to_string(uint8_t pdu_type);
void read_channel_param(nfapi_dl_config_request_t * dl_config, int sf);
bool drop_tb(int sf, uint16_t rnti);
bool check_drop_tb(int sf, uint16_t rnti);
extern queue_t dl_config_req_tx_req_queue; extern queue_t dl_config_req_tx_req_queue;
extern queue_t ul_config_req_queue; extern queue_t ul_config_req_queue;
extern queue_t hi_dci0_req_queue; extern queue_t hi_dci0_req_queue;
......
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