Trace ISR When this flag set, the generated code is instrumented to call the ISR tracing function in the following places (For ISR Type 2 and 3): ● Just after calling the “EnterISR” API ● Just before calling the “LeaveISR” API Example: #ifndef TRACE_ISR_ENTER extern void traceIsr(); #define TRACE_ISR_ENTER(i) traceIsr((i), ’N’) #endif
When this flag set, the generated code is instrumented to call the ISR tracing function in the following places (For ISR Type 2 and 3):
#ifndef TRACE_ISR_ENTER
extern void traceIsr();
#define TRACE_ISR_ENTER(i) traceIsr((i), ’N’)
#endif