FreeRTOS - Design Patterns for RTOS
Given this snippet inside a watchdog task:
What happens if no notification is received within 1000 ms?
if(xTaskNotifyWait(0, 0, &ulNotificationValue, pdMS_TO_TICKS(1000)) == pdTRUE) { resetWatchdogTimer(); }What happens if no notification is received within 1000 ms?
