Part Number: TMS320F28388S
Hello,
I read the following from section 20.5 ADC Conversion Priorty, pg. 2581 from the "TMS320F2838x Real-Time Microcontrollers With Connectivity Manager" Technical Referance Manual (TRM) Literature Number: SPRUII0F

My goal is to convert two SOC's in burst mode and then reset the RRPOINTER. I do not need any high priority SOC's. I'm also not sure if it is necersarry to reset the RRPOINTER either.
For example if I wanted to convert SOC0 and SOC1 on ADC A in burst mode using a software trigger I would expect to do the following:
AdcaRegs.BURSTCTL.BURSTEN = 1; // Enable ADC Bust Mode for ADC A
AdcaRegs.BURSTCTL.BURSTTRIG = 0; // SW Triggers burst of conversionsAdcaRegs.BURSTCTL.BURSTSIZE = 1; //conversion bursts are 1 + 1 = 2 conversions long
// SOC Configurations...
EALLOW;
AdcaRegs.ADCCTL1.bit.INTPULSEPOS = 1; // Interrupt Pulse Generation occurs at the the end of conversion
AdcaRegs.BURSTCTL.bit.BURSTEN = 1; // Enable ADC Bust Mode for ADC A
AdcaRegs.BURSTCTL.bit.BURSTTRIG = 0; // SW Triggers burst of conversions
AdcaRegs.BURSTCTL.bit.BURSTSIZE = 1; //conversion bursts are 1 + 1 = 2 conversions long
AdcaRegs.ADCINTSEL1N2.bit.INT1SEL = 1; // EOC1 is trigger for ADCINT1
// SOC Configurations...
EDIS;
// Trigger the SOCs as follows
AdcaRegs.ADCSOCFRC1.all = 0x0003; //set SOC flags for SOC0 to SOC1
while(!AdcaRegs.ADCINTFLG.bit.ADCINT1); // Wait for conversion to finish
EALLOW;
// Reset Priority register to clear the RRPOINTER?
AdcaRegs.ADCSOCPRICTL.all = 0x00;
EDIS;