Hi, I'm trying to get a basic timer interrupt to happen on the ezdsp.
I am working off of the AudioFilter program from the google code site. I have added all of the appropriate registers for the timer and timer flag register. I can see that the time flag register (TIAFR) sets the correct bit when a timer overflows. My problem is that I never can get into my interrupt sub routine for the timer.
What I have done:
I have added the following to vector.asm
.global _Timer_isr
TINT0: .ivec _Timer_isr
I have created my own timer_int.c and .h file which contains the function
interrupt void Timer_isr(void)
I have made sure that IER0 has enabled interrupts for the timer flag (i.e. IER0 = 0x10)
Is there anything else that I need to do to get the interrupts working for the general purpose timers?
Thanks,
Tommy