Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 571 Bytes

File metadata and controls

26 lines (21 loc) · 571 Bytes

Learning Objectives

  • Mutex.

Concepts

Mutex, short for Mutual Exclusion, is a synchronization primitive used to synchronize access to a shared resource.

Steps

  1. Complete all the TODOs in the source/tutorials/tutorial_13/source/tutorial_13.c file.

  2. 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
  3. Execute the following command to run the binary:

    ./freertos_example
  4. Understand the output.