cancel
Showing results for 
Search instead for 
Did you mean: 

STM32F3 discovery maximum input frequency

Arvi 38
Associate
Posted on March 23, 2018 at 19:15

Hi 

I am currently working on STM32F3 discovery board. I want to calculate the number of rising edges that can occur in certain time period. Currently I am doing this by setting up an external interrupt pin and a timer.

At a frequency of about 750khz I am loosing the pulses. 

I want to know what is the maximum frequency of the signal that can be given as an input?

Thank You

#general-purpose-timers #gpio #external-interrupt #stm32f3-discovery
1 REPLY 1
Posted on March 24, 2018 at 21:53

I want to know what is the maximum frequency of the signal that can be given as an input?

The external interrupt will react on pulses with length comparable with the device's clock. The question however is, what is the processing time of your interrupt service routine.

For this purpose, better use a timer in external clock mode.

JW