I have the following code:HAL_UART_Transmit_DMA(Outgoinghuart, (uint8_t *)message, sizeOfMessage);
delay(10000);
HAL_UART_Transmit_DMA(Outgoinghuart, (uint8_t *)message, sizeOfMessage);The second DMA transmit is always busy, no matter how big the del...