HAL_UARTEx_ReceiveToIdle_DMA only fills the first carater of my array
Hello,I am trying to receive an unknown length of data on a UART on a STM32H7A3I have declared a buffer to receive the data and aligned it :#define UART_RX_BUFF_SIZE 256 ALIGN_32BYTES (static uint8_t uart_buff[UART_RX_BUFF_SIZE]);Then as I am working...