Issues with interrupt priority handling
Hello,i have configured a timer interrupt an it seems like that interrupt preempt another adc interrupt. I configured the timer interrupt like that: NVIC_SetPriority(TIM1_BRK_IRQn, 2U); NVIC_SetPriority(TIM1_UP_IRQn, 2U); and the adc interrupt like t...