FreeRTOS scheduling configurations for tasks

I have my freeRTOS, which now works on my Microzed board. I use the Xilinx SDK as a software platform, and so far I have been able to create tasks and assign priority.

I was just curious to know whether it is possible to assign a fixed time to each of my tasks, for example, after 100 milliseconds my scheduler will switch to the next task. So can I set a fixed runtime for each of my tasks? As far as I checked, I could not find a method for this, if there are any means to implement this using the freeRTOS utilities, kindly tell me guys.

+6
source share
1 answer

FreeRTOS slice , . http://www.freertos.org/a00110.html#configUSE_TIME_SLICING, , , . , , .

- ? , , , , , .

+2

Source: https://habr.com/ru/post/1015104/


All Articles