Chris, this is my ADC configuration: // Initializing ADC (MCLK/1/1) where MCLK = 24MHz MAP_ADC14_enableModule(); MAP_ADC14_initModule(ADC_CLOCKSOURCE_MCLK, ADC_PREDIVIDER_1, ADC_DIVIDER_1, ADC_NOROUTE); // Configuring ADC Memory with no repeat and AVCC/AVSS references ... // Configuring the sample/hold time; longest time for more accurate measurements MAP_ADC14_setSampleHoldTime(ADC_PULSE_WIDTH_192, ADC_PULSE_WIDTH_192); // Setting up the sample timer to automatically step through the sequence convert MAP_ADC14_enableSampleTimer(ADC_AUTOMATIC_ITERATION); As you can see, the sample time is maximum.
↧