Hi,
I am having trouble either getting timer0_a to count down or seeing it decrement in debug mode. I'm not sure which it is. I am new to both the lm4f120h5qr and ccs5.
I have used these lines to configure system clock and enable the timer.
SysCtlClockSet(SYSCTL_SYSDIV_5 | SYSCTL_USE_PLL | SYSCTL_XTAL_16MHZ| SYSCTL_OSC_MAIN);
SysCtlPeripheralEnable(SYSCTL_PERIPH_TIMER0);
TimerConfigure(TIMER0_BASE, TIMER_CFG_PERIODIC);
TimerEnable(TIMER0_BASE, TIMER_A);
Have I missed anything in setting the timer up to count down and if not what am I doing wrong in using debug mode.
I am watching TAR and TAV but when I break they have a value of 0x000093E0 and don't change if I restart or single step.