xEventGroupWaitBits function usning
Hi
I use STM32H7 with free-rtos for my projct.
I need to synchonized analog samples reading from 2 DMA channels and from 2 different ADCs.
I use the xEventGroupWaitBits function to stop the execution of the sampling before starting a new sampling cycle.
DMA-ADC interrupts of both channels releasing the WAIT by the xEventGroupSetBitsFromISR command.
My problem is the time takes from the xEventGroupSetBitsFromISR (in the callbacks) until the xEventGroupWaitBits function resumes execuation - It takes 1ms which is much to much for my project. What can solve it ?
Thanks
