xEventGroupWaitBits()

Hi Can more than one task be blocked on xEventGroupWaitBits() ? If I have this function: void func() { xEventGroupWaitBits() { //code// } } Can function func() be called from many tasks ? Michael

xEventGroupWaitBits()

Multiple tasks are allowed to wait on the same EventGroup, and when an event is Set, all the tasks that are waiting for that particular event are woken.