stm32f767 and UART DMA IT (interrupts)
Posted on January 24, 2017 at 11:07Hi,How to use UART in DMA mode with interrupts IT.I use the next code to transmit, and it works perfect. HAL_DMA_Start_IT(&hdma_usart3_tx, (uint32_t)msg, (uint32_t)&huart3.Instance->TDR, strlen(msg)); huart3.Instan...