User Activity

So I am setting up the DMA for USART1 tx on a STM32F4 on each transfer, and busy wait for it to be done (no interrupt) by polling TC. DMA2_Stream7->NDTR = len; DMA2_Stream7->PAR = (uint32_t)&(USART1->DR); DMA2_Stream7->M0AR = (uint32_t)str...