Other Parts Discussed in Thread: C2000WARE
I'm looking at using different channels of individual ADC in different resolutions. Is there a delay required between when the resolution is changed to when I can start sampling in the new resolution?
Right now the interrupt generated from the 16Bit conversion does the following:
ADC_setMode( ADCB_BASE, ADC_RESOLUTION_12BIT, ADC_MODE_SINGLE_ENDED );
ADC_setMode( ADCD_BASE, ADC_RESOLUTION_12BIT, ADC_MODE_SINGLE_ENDED );
EPWM_forceADCTrigger( EPWM1_BASE, EPWM_SOC_B );
This seems to work I just want to verify this does not violate any timing requirements.
Note: the interrupt from the 12Bit conversion changes back to 16Bit.