I just disable the systic interrupt in systic handler. code is given below:
void SysTick_Handler(void)
{
NVIC_DisableIRQ(SysTick_IRQn);
}
after executing the above instruction processor goes to hard fault handler.
But like the same thing I have done it for timer interrupt as given below.
void TIMER0_IRQHandler()
{
NVIC_DisableIRQ(TIMER0_IRQn);
}
it didn't go to hard fault handler.
What is the reason for this? is anyone experienced this type of issue.
Regards,
Muralidhar.