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.

fwScheduleTask函数在哪里有介绍?



fwScheduleTask函数在哪里有介绍?    fwScheduleTask(1) ;  被报错了

  • The RTC period determines the execution interval of the SC task, if the SC task is scheduled by the RTC with the fwScheduleTask() function. fwScheduleTask(N) schedules the next task iteration in N RTC ticks. So for instance, let's say the RTC is operating at 200Hz. Scheduling the SC task with fwScheduleTask(1); would run the execution code at a 200Hz rate. With fwScheduleTask(5); the execution code would run at a (200/5)=40Hz rate, and so on.

    However, to minimize current consumption it is recommended to select the highest possible tickPeriod so that the argument in fwScheduleTask() can be as low as possible.

    参考:dev.ti.com/.../sc_01_project_from_scratch.html
    以及:
    www.ti.com/.../swra578