Tool/software: TI-RTOS
I am trying to comprehend mutex of TIRTOS on CC2640.
there is an example in SKD named mutex_cc2640r2_launchpad, which uses 2 tasks to modify valuable resource. that valuable is put between semaphore_pend and semaphore_post (lock and unlock to access that variable)
in order to inspect the effect, I removed the semaphore line in both tasks, and the LOG still shows the same result as previous (2 tasks in turn access and increase variable resource)
So, how can I see the effect of semaphore?