User Activity

I am trying to use Timer Output Compare on STM32F746NG with the following code:void TIM1_CC_IRQHandler(void) { volatile uint32_t a = TIM1->CNT;   printf("DUMMY\r\n"); }   void timer_start(void) { TIM_HandleTypeDef htim1; TIM_OC_InitTypeDef tim1...