Hello,I am new to ST processors. Here is the issue:I am trying to setup Timer 3 for interrupt, Code: TIM3_DeInit(); CLK_PeripheralClockConfig(CLK_PCKENR1_TIM3, ENABLE); TIM3_TimeBaseInit(TIM3_Prescaler_64, TIM3_CounterMode_Down, 2500); TIM3_Set...
Please ignore my last post.I found the problem is that when "CLK_PeripheralClockConfig(CLK_PCKENR1_TIM3, ENABLE);" is called the "CLK_PCKENR1_TIM3" gets changed to "CLK_PCKENR1_TIM4" inside the function.It is very strange and did "rebuild all" and pr...