Hi,
There is an issue in the file interrupt_manager_MPC57xx.c, line 90 at definition of the size of the array :
__VECTOR_RAM[ FEATURE_INTERRUPT_IRQ_MAX ]
it should be:
__VECTOR_RAM[ FEATURE_INTERRUPT_IRQ_MAX + 1 ]
From MPC5744P_features.h, the definition is as follow:
#define FEATURE_INTERRUPT_IRQ_MAX (SGEN_Err_IRQn)
Best regards,
Pat