- Semaphore.
Semaphores are synchronization primitives to enable synchronization between tasks, and between interrupts and tasks.
-
Complete all the TODOs in the
source/tutorials/tutorial_12/source/tutorial_12.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=12 make
-
Execute the following command to run the binary:
./freertos_example
-
Understand the output.