I am new in this forum and I have been using Tiva for a few months. I am working on a project that collects data at a rate of 15360 samples per second and executes such data collection once every minute. I used two timers in Tiva Launchpad (TM4C123GH6PM): Timer0A and Timer1A.
Timer0A is triggered every 1/15360s (TIMER0->TAILR = 0x00000412) and Timer1A is triggered every second (TIMER1->TAILR = 0x00F42400) using the default 16MHz clock. I also declared interrupt routine handlers (TIMER0A_Handler(void) and TIMER1A_Handler(void)) and included the IRQns in the vector table (number 19 and number 21) in the cstartup_M file.
At first, both were running but after debugging for the second time, the code is still running but the interrupts are never triggered. Did I miss something?]
These are the interrupts that were never triggered during second debug run:
This is the part of register initialization for both timers:
These are the lines where I start the interrupt routines and the clocks:
Thanks in advance!!!