Commit 25a3b7f9 authored by Ming-Hong Hsu's avatar Ming-Hong Hsu Committed by hsum

About the previous issue where req resulted in the value being overwritten,...

About the previous issue where req resulted in the value being overwritten, adjusting slot_ahead inside handle_nr_slot_ind to "1" can prevent this.
parent 209d8ade
......@@ -2114,7 +2114,7 @@ void handle_nr_slot_ind(uint16_t sfn, uint16_t slot)
//send VNF slot indication, which is aligned with TX thread, so that it can call the scheduler
//we give four additional slots (2ms) which should be enough time for the VNF to
//answer
uint8_t slot_ahead = 2;
uint8_t slot_ahead = 1;
uint32_t sfn_slot_tx = sfnslot_add_slot(sfn, slot, slot_ahead);
uint16_t sfn_tx = NFAPI_SFNSLOT2SFN(sfn_slot_tx);
uint8_t slot_tx = NFAPI_SFNSLOT2SLOT(sfn_slot_tx);
......
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