FreeRTOS - Design Patterns for RTOS
Consider this code snippet:
What is the value of
EventGroupHandle_t xEventGroup = xEventGroupCreate(); xEventGroupSetBits(xEventGroup, 0x01); EventBits_t bits = xEventGroupWaitBits(xEventGroup, 0x01, pdTRUE, pdFALSE, portMAX_DELAY);
What is the value of
bits after execution?