2013-10-28 06:02 AM
Using an STM32F407
I am using a timer to capture the time between two TRGI events. It is set to reset every trigger in event. In my current code, the ISR for the TRGI event reads the CNT value to determine this value.This seems like it will be a race condition. Is there a better way to guarantee that I will get this value every time? #trigger #stm32f4 #timer2013-10-28 06:21 AM
Generally you'd want to latch values in CCRx registers, as CNT keeps ticking, and interrupt latency can be somewhat variable.
There are other gated modes to control the timer, and you could perhaps read the CNT via DMA.2013-10-28 09:58 AM
Thanks Clive,
I ended up using CC1 in IC mode set up to use TRC as the trigger. I am checking the value in an ISR. This seems to be working well initially.