This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I have been sampling 8 signals from an ultrasonic array, each signal is sampled by an ADC channel at maximun sampling rate of ADC0 (125 Ksps) , the problem is that the ultrasonic signal is arriving at different times to the sensors that are equaled separate from the ultrasonic source, what I want to know is if the analog digital conversion of 8 channels is not simultaneous, I am using a timer for DMA.
Here is ADC configuration:
ADCClockConfigSet(ADC0_BASE,ADC_CLOCK_SRC_PIOSC | ADC_CLOCK_RATE_FULL, 1); ADCSequenceConfigure(ADC0_BASE, 0, ADC_TRIGGER_TIMER, 0); ADCSequenceStepConfigure(ADC0_BASE, 0 , 0, ADC_CTL_CH19); // PK3 ADCSequenceStepConfigure(ADC0_BASE, 0 , 1, ADC_CTL_CH18); // PK2 ADCSequenceStepConfigure(ADC0_BASE, 0 , 2, ADC_CTL_CH17); // PK1 ADCSequenceStepConfigure(ADC0_BASE, 0 , 3, ADC_CTL_CH16); // PK0 ADCSequenceStepConfigure(ADC0_BASE, 0 , 4, ADC_CTL_CH0); // PE3 ADCSequenceStepConfigure(ADC0_BASE, 0 , 5, ADC_CTL_CH1); // PE2 ADCSequenceStepConfigure(ADC0_BASE, 0 , 6, ADC_CTL_CH2); // PE1 ADCSequenceStepConfigure(ADC0_BASE, 0 , 7, ADC_CTL_CH3 | ADC_CTL_END | ADC_CTL_IE); // PE0 ADCSequenceDMAEnable(ADC0_BASE, 0);