Hi,
I made a project based on the "adc_ex2_soc_epwm" example, I increased the pwm frequency to 200KHZ. I noticed that when I remove the part of the code below, which checks for overflow, after some time the ADC stops generating interrupts. Apparently if an overflow occurs and the corresponding flag is not cleared, the ADC interrupts stop happening. How can I configure the ADC so that interruptions never stop happening even if an overflow occurs? Because I don't want to use this slow code that keeps checking for overflow because my interruption rate is very high.
if(true == ADC_getInterruptOverflowStatus(myADC0_BASE, ADC_INT_NUMBER1))
{
ADC_clearInterruptOverflowStatus(myADC0_BASE, ADC_INT_NUMBER1);
ADC_clearInterruptStatus(myADC0_BASE, ADC_INT_NUMBER1);
}
Ari