I've been trying to understand how systick works because i need to set up a 100 Hz interrupt timer. I'm using the cc2538EM and SmartRF06 Evaluation Board. Some of the code I'm using is
SysCtrlIOClockSet(SYS_CTRL_SYSDIV_32MH);
SysTickPeriodSet(SysCtrlIOClockGet() / TICKS_PER_SECOND); // Tick per second= 100
SysTickEnable();
SysTickIntEnable();
also when i run and pause it says no source available for 0x13bc. i could really use some clarification with this as far as the ins and outs and how to properly set up. i'm trying to port FAT32 file system from elmchan