Resolved! UART transmit DMA not working (bare metal, no HAL)
Hello,I am trying to get the UART to transmit some bytes with DMA. Nothing happens. RCC->APB2ENR |= (uint32_t)((1<<14)|(1<<2)); // Bit 14 USART1 clock enable & Bit 2 I/O port A clock enable GPIOA->BRR = (1<<10); // pull-down PA.10 GPIOA->...