This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

SysTick operation with PLL TM4C129

How can i get delay of 1sec through system timer(SysTick) and i will be using system clock of 60 MHz( generated using PLL).  

  • Hello Bharath

    Use a systick timer load value of 100ms. In the Systick interrupt handler, count it 10 times to get 1 second. This is because the Systick does not load anything above 24 bits and the using a load value corresponding to 60Mhz for 1 second would cause an incorrect value to be loaded.

    Regards
    Amit