This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi experts,
According to the MCTLBGRND Register Field Descriptions:
The MSTOP instruction will clear the BGSTART bit. On the other hand, the following figs show the background task's assembly codes, it can be found that MSTOP instruction will be added in the end of the background task.
So we need to trigger the CLA background task again via API of CLA_startBackgroundTask(CLA1_BASE);
I want to know if there is a way to avoid the MSTOP instruction in the end of the background task so that the SW can trigger background task just one time and background task will operate continuously.
Best Regards,
Will
Hi Will,
The code can be put in a while(1) or for( ; ;) so the background task is executing continuously once started.
Thanks,
Ashwini