1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 12:55:19 +03:00

STM32F3 - Fix LED Strip hardware initialisation.

This commit is contained in:
Dominic Clifton 2015-01-12 22:01:45 +00:00
parent 4e0cdf5e86
commit b6ac9204d3
6 changed files with 58 additions and 8 deletions

View file

@ -338,6 +338,7 @@ void DMA1_Channel7_IRQHandler(void)
#endif
// USART3 Tx DMA Handler
#ifdef USE_USART2_TX_DMA
void DMA1_Channel2_IRQHandler(void)
{
uartPort_t *s = &uartPort3;
@ -345,6 +346,8 @@ void DMA1_Channel2_IRQHandler(void)
DMA_Cmd(DMA1_Channel2, DISABLE);
handleUsartTxDma(s);
}
#endif
void usartIrqHandler(uartPort_t *s)
{