RTOS Mutex
0) One-line definition
Mutex = a lock to protect mutually exclusive critical sections.The key feature is priority inversion prevention (inheritance)—this is what differentiates it from queues/semaphores.Never use it in ISRs. (Task context only)
1) W...
psk-study.hashnode.dev4 min read