- Mutex.
Mutex, short for Mutual Exclusion, is a synchronization primitive used to synchronize access to a shared resource.
-
Complete all the TODOs in the
source/tutorials/tutorial_13/source/tutorial_13.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=13 make
-
Execute the following command to run the binary:
./freertos_example
-
Understand the output.