This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

mutex implementation for m3 without rtx lib

Hello,
Is there a mutex implementation available for use that does not require the rtx lib?
Thanks,
JG

Parents
  • A mutex is an object that lets a task wait until a resource is ready.

    Without RTX, you would normally not have any tasks.

    If you just want to synchronize access to variables between an ISR and the main loop, then you don't need a mutex.

Reply
  • A mutex is an object that lets a task wait until a resource is ready.

    Without RTX, you would normally not have any tasks.

    If you just want to synchronize access to variables between an ISR and the main loop, then you don't need a mutex.

Children