Other Parts Discussed in Thread: OMAPL138
I am new to dsp programming and started with omapl138 . starting with the few examples provided by ti in the page http://processors.wiki.ti.com/index.php/QuickStartOMAPL1x_rCSL i began to explore it more. the program timer_interrupt provided in the package is : a timer running in 32 bit unchained mode and generating an interrupt every second automatically. this interrupt is mapped onto cpu hardware interrupt int4 which then executes the interrupt service routine of counting the no. of interrupts occured so far. i am confused in the sense that is int4 also will be generated after every second so the interrupt service routine for int4 should also get executed after every second and as it should not take a lot of time to execute in almost 3 to 4 seconds we should get a message on the screen intimating that 3 or 4 interrupts have occurred. am i right or not. or it is regarding a interrupt being generated every second by the timer and mapping it onto int4 and executing the isr but why is it taking so much of time to execute any help will be appreciated at the earliest. and to start learning interrupt handling can anyone suggest some scenarios which can be programmed to easily understand the interrupt handling from the basic.