Generate USART Tx DMA using timer expire on backend without any CPU intervention like DAC with Timer?
Posted on May 25, 2017 at 08:47Hi, Generally i do likeOption 1)unsigned char tmp;unsigned char *ptr='Hello World!';for(tmp=0;tmp<10;tmp++){ HAL_UART_Transmit(&huart1,ptr,strlen(ptr),100); HAL_Delay(10); //10ms}Option 2)Start TIM2 ,which gener...