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.

ADC give more 3 Msps

Other Parts Discussed in Thread: TM4C1294NCPDT

Hi All.

Maybe I made error, but ADC in my TM4C1294NCPDT give me 3-4 Msps.


I wrote
ADCClockConfigSet (ADC0_BASE, ADC_CLOCK_SRC_PLL | ADC_CLOCK_RATE_FULL, 0x08);

And in function ADCClockConfigSet I changed
ASSERT(((ui32ClockDiv - 1) & ~ADC_CC_CLKDIV_M) != 0);

to

// ASSERT(((ui32ClockDiv - 1) & ~ADC_CC_CLKDIV_M) != 0);


It's work normal
Where I'm wrong?