FreeRTOS - Task Notifications
Consider this code snippet:
uint32_t count = ulTaskNotifyTake(pdFALSE, portMAX_DELAY); // Assume 3 notifications were sent before this callWhat will be the value of
count after this call?