Configuring timers on STM32F103C8T6 for 32-bit resolution input capture
What I would like to do is the following:
1) Take a pair of the STM32F103C8T6's 16-bit timers and link them into a 32-bit timer (I'm pretty sure there's an app note somewhere that describes this)
2) Then, configure that 32-bit timer for input capture (it looks like this may require shorting the input trigger GPIOs together)
3) Then, of course, configure the timer to call an IRQ routine.
I'm not too worried about over-capture. I'm trying to capture events that may happen several milliseconds apart with microsecond accuracy, so the Cortex M3 should easily be able to keep up.
Questions:
1) Is this easiy done?
2) What are the issues, if any, regarding simultaneous input capture on linked timer pairs?
I'm a bit surprised that a 32-bit MCU doesn't have a 32-bit timer or two (I know that other STM32F's do, but why not the STM32F103?)
