User Activity

Posted on February 16, 2012 at 16:18Hello, I want to create flanks with an Timer4 interrupt. I works if i use the interrupts from  external flanks. Now I want to create the flanks with an internal frequency. Its a little  complicated to describe all...
Posted on February 09, 2012 at 10:22Flag/ Interrupt-flag did not trip during an other Interrupt?
Posted on January 26, 2012 at 10:28I need a delay in a timer 4 interrupt. To realize this I wrote the the follow lines:if(TIM_GetITStatus(TIM4, TIM_IT_CC1) == SET) { TIM_ClearITPendingBit(TIM4, TIM_IT_CC1); TIM_ClearFlag(TIM4, TIM_FLAG_CC3); while(T...
Posted on January 16, 2012 at 11:15Hi, I detect flanks with timer 2 interrupts. After a delay of a few µs I need a timer 4 interrupt to activate an IO port. This delay should be very exactly. So I want to add the delay time to the captured time. Bu...