Tool/software:
Hi TI,
Is there a register that is used to enable interrupt nesting? How to allow interrupt nesting from the same interrupt source?
I am triggering an interrupt from ADC which is registered as shown below. I want a new interrupt from the same source to enter the same ISR if the previous interrupt ISR overruns its duration.
I have tried enabling global interrupts after entering ISR (using HwiP_enable()) to allow interrupt nesting, but it has not helped. Please advice if I am missing anything?
Request your inputs at the earliest as this is currently a roadblock for further testing with customer.
HwiP_Params_init(&hwiPrms);
hwiPrms.intNum = CSLR_R5FSS0_CORE0_CONTROLSS_INTRXBAR0_OUT_1;
hwiPrms.callback = Sys_Adc_Isr;
hwiPrms.priority = 8;
hwiPrms.isPulse = TRUE;
hwiPrms.isFIQ = 0;
(void) HwiP_construct(&HwiObject, &hwiPrms);


