Tool/software:
Hi!
I am seeing the DebugP_log trump even ISRs configured with priority 0.
In my program, I only have 1 interrupt driven by this ISR. In the main loop, I have a periodic DebugP_log statement running to show the state of the system.
i.e.
```
/* Register & enable interrupt */
HwiP_Params_init(&hwiPrms);
hwiPrms.intNum = CSLR_R5FSS0_CORE0_CONTROLSS_INTRXBAR0_OUT_0;
hwiPrms.priority = 0; /* setting high priority. optional */
hwiPrms.callback = &App_adcISR;
status = HwiP_construct(&gAdcHwiObject, &hwiPrms);
DebugP_assert(status == SystemP_SUCCESS);
```
Even App_adcISR will wait until the cycles needed to run a DebugP_log line.
Any idea where this is configured / how I can ensure the ISR interrupt runs always?
Thanks!