Is it possible to combine USART2 Rx in autonomous DMA mode with IDLE mode?
Hi,
i am using STM32WBA55CG and i want:
1. wake-up from STOP mode to receive bytes over USART2 Rx
2. Handle data with half-complete and complete callback
3. Use the IDLE interrupt to detect the end of transmission
Each works perfectly on its own. However, when I try to combine both variants, the CPU hangs.
Since I cannot expect a specific byte length (1 byte could also be transferred as 100kB), I would like to process the data via a 1kB ring buffer. I can use half complete and complete callback for this. To recognize the end of the data transfer, I want to use the IDLE interrupt.
