I need to use ADC0 and ADC1 with 180-degree phase dely with common trigger. It appears that the necessary APIs are, in part:
ADCPhaseDelaySet(ADC1_BASE, ADC_PHASE_180);
ADCProcessorTrigger(ADC0_BASE,3);
ADCProcessorTrigger(ADC1_BASE,3);
ADCSequenceConfigure(ADC0_BASE,3 | ADC_TRIGGER_WAIT, ADC_TRIGGER_PROCESSOR, 0);
ADCSequenceConfigure(ADC1_BASE, 3 | ADC_TRIGGER_SIGNAL, ADC_TRIGGER_PROCESSOR, 0);
Does this seem correct