cancel
Showing results for 
Search instead for 
Did you mean: 

Capture a timer value upon another timer update

justin239955_st
Associate III
Posted on December 05, 2013 at 16:43

Hi,

I have two timer running TIM2 and TIM4. I would like to capture TIM4 counter value when TIM2 overflows (update). I do not wish to sample the value inside the ISR because i need precision. I would like to use something like an input capture but with the trigger being the TIM2 update instead of an outside event.

I feel like there is a simple solution there but just can't see it. Anyone has done that before?

Thanks,

Justin

#stm32-timer-capture-update
2 REPLIES 2
Posted on December 05, 2013 at 18:01

DMA Trigger?

Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..
justin239955_st
Associate III
Posted on December 05, 2013 at 19:37

Yes it looks like i'll try that.

Setup DMA1 CH2 to get triggered by TIM2_UP then the DMA transfers the value from TIM4->CNT to a RAM location later read is the TIM2_UP ISR...

Thanks