// Enables systick timer LPC_SYS_TICK->SYST_RVR = (((F_CPU/1000)*1)-1); LPC_SYS_TICK->SYST_CVR = 0; LPC_SYS_TICK->SYST_CSR = 0x07; // The following call should stop the Systick timer NVIC_DisableIRQ(SysTick_IRQn);// ISR routine for Systick timer interruptvoid SysTick_Handler(void){// The control should not come here if NVIC_DisableIRQ() call succeeds}