Setup FreeRTOS project with multiple CPUs
I’m new to FreeRTOS.
Freertos wait two event in a task
I’m using 2xDMA to start ADC and get raw value in a task. After completed two DMA, I need to process these data in same task. I’m thinking of using two xTaskNotify in each callback but I’m not sure how to wait them in one line code. Is it possible with using tasknofity? Or, should I use another method?