FreeRTOS - Interrupt Management
What is wrong with this deferred interrupt processing approach?
void ISR_Handler(void) {
xSemaphoreGiveFromISR(&sem, NULL);
}
Assuming sem is a binary semaphore.