- Task Priorities.
The FreeRTOS scheduler always runs the highest priority ready task (i.e. the task that is able to run).
-
Complete all the TODOs in the
source/tutorials/tutorial_4/source/tutorial_4.c
file. -
Execute the following commands from the root of the repository to build:
rm -rf build mkdir build cd build cmake -B . -S ../source/ -DTUTORIAL=4 make
-
Execute the following command to run the binary:
./freertos_example