Timer issue
Dear all
I have configured three timers TIM2,TIM3 and TIM4
NVIC_SetPriority(TIM2_IRQn, 0x00);
NVIC_EnableIRQ(TIM2_IRQn);
NVIC_SetVector(TIM2_IRQn, (uint32_t)&TIM2_IRQ_Handler);
NVIC_SetPriority(TIM3_IRQn, 0x00);
NVIC_EnableIRQ(TIM3_IRQn);
NVIC_SetVector(TIM3_IRQn, (uint32_t)&TIM3_IRQ_Handler);
/* NVIC_SetPriority(TIM4_IRQn, 0x00);
NVIC_EnableIRQ(TIM4_IRQn);
NVIC_SetVector(TIM4_IRQn, (uint32_t)&TIM4_IRQ_Handler);
But Issue I am facing that only two timers are running at one time with
same and with different priorities TIM2 and TIM4(running with different priorities)
(TIM2 and TIM3 are running with same priorities) .
help me where I am wrong
B.R
Rohit
