Skip to content
Snippets Groups Projects
Commit 21d13ef4 authored by Wu Jing's avatar Wu Jing
Browse files

fix the frame compute

parent b878b154
No related branches found
No related tags found
5 merge requests!650Release v1.1.0 Candidate,!649Develop: Integration 2019 Week 30,!642Develop: Integration 2019 Mid-Week 29,!630nfapi interface bug fix,!588Develop nr merge
......@@ -36,7 +36,7 @@ extern uint16_t sf_ahead;
void add_sf(uint16_t *frameP, uint16_t *subframeP, int offset)
{
*frameP = *frameP + ((*subframeP + offset) / 10);
*frameP = (*frameP + ((*subframeP + offset) / 10))%1024;
*subframeP = ((*subframeP + offset) % 10);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment