Hello,
From the document “The FreeRTOS Reference Manual”(FreeRTOS v10.0.0), there is xTaskNotifyGive(). From the source code v10.4.3 I’m currently using, there is no xTaskNotifyGive() anymore. Instead, there is vTaskNotifyGiveFromISR().
I understand vTaskNotifyGiveFromISR() can be called from an ISR. For me, I need to call it from task but not from an ISR. Will that work?
I’m just wondering why xTaskNotifyGive() isn’t supported anymore.
Thanks!