Part Number:CC1310
Tool/software:TI-RTOS
Hi,
I would like to know how to do a "do while" in a task compared to another task with a semaphore. I know the semaphore_pend but it is precisely the reverse of what wants to do.
exemple :
Task 1 :
do while (semaphore){
led blinking
}
Task 2 :
read sensor;
semaphore_post; //stop led blinking
Edouard