2019-01-26 11:16 PM
Projects\STM32L152RE-Nucleo\Examples_LL\USART\USART_Communication_TxRx_DMA\Src\stm32l1xx_it.c
DMA handlers clear wrong flag (GI instead of TC):
void DMA1_Channel6_IRQHandler(void)
{
if(LL_DMA_IsActiveFlag_TC6(DMA1))
{
LL_DMA_ClearFlag_GI6(DMA1);
Version is 1.8.0 with 1.8.1 patch installed
2019-01-27 01:56 AM
Doesn't that just clear all the flags?