Hi,
I need to calculate a time elapsed for fft calculation. My doubt is when i call start timer function controller will execute a timer untill timer period then come back to main function or else does it initiate the timer and come back to the main.
conisder-->
main{
----
-----
timer_init();
fft_process();
------
}
void timer_init(void)
{
----
----
}
voif fft_process(void)
{
----
-----
}