Tool/software:
Hello,
I have driverlib based project and I use ADC C that is triggered by an PWM channel. It works well. As you can below code, I acknowledge the group.
// ================= Interrupt Flag Clear ================= //
ADC_clearInterruptStatus(ADCC_BASE, ADC_INT_NUMBER1); // Clear the interrupt flag
if(true == ADC_getInterruptOverflowStatus(ADCC_BASE, ADC_INT_NUMBER1))
{
ADC_clearInterruptOverflowStatus(ADCC_BASE, ADC_INT_NUMBER1);
ADC_clearInterruptStatus(ADCC_BASE, ADC_INT_NUMBER1);
}
Interrupt_clearACKGroup(INTERRUPT_ACK_GROUP1); // Acknowledge the interrupt
// ================= ~~Interrupt Flag Clear ================= //

I just want to directly acknowledge the INT1.3 and not the all group 1. Can you provide me code section for this one? As a reminder, I use driverlib based project.
Kind regards,
