WDOG_IRQHandler() at startup_S32K116.S:169 0x46c

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

WDOG_IRQHandler() at startup_S32K116.S:169 0x46c

799 Views
tao_chen
Contributor I

What is the meaning of “WDOG_IRQHandler() at startup_S32K116.S:169 0x46c ”?

And how can I fix it ? THX!

tao_chen_0-1607071005944.png

 

0 Kudos
1 Reply

794 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Hi,

The program will end up in the DefaultISR endless while loop if an interrupt is fetched but its handler function is not implemented in the project.

It could be a fault exception.

Try adding Hard fault handler in you project:

void HardFault_Handler(void)
{
   while(1){}
}

 

Regards,

Daniel

0 Kudos