Question
How to clear the DMA functions` redundancy words?
when I use the DMA functions as below:
HAL_UART_Transmit_DMA(&huart1,(uint8_t *)aTxStartMessage,sizeof(aTxStartMessage));
HAL_Delay(10000);
In PC side,It always display such symbols at the hand of the aTxStartMessage after the first success reciever.
Which register should be set ?
What is the DMA function`s program process?
��