michaeln32 wrote on Tuesday, March 19, 2019:
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
michaeln32 wrote on Tuesday, March 19, 2019:
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
richarddamon wrote on Tuesday, March 19, 2019:
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.