faliing to migrate trivial example from TIM6 to TIM5
Posted on April 15, 2014 at 15:23 I have a snippet which works, it blinks blue LED on stm32f4discovery: void TIM6_DAC_IRQHandler() { if (TIM6->SR) GPIOD->ODR ^= (1 << 15 ); // Toggle D15 TIM6->SR &= ~1; // Interrupt has been handled ...