2022-04-13 11:18 AM
2022-04-13 12:05 PM
The ADC has a clock rate maximum as defined in the data sheet. Your ADC configuration determines how many clocks are used for each sample. That determines the time to convert.
If this answer doesn't suffice, show your code.
Cheers, Hal
2022-04-13 12:05 PM
The ADC has a clock rate maximum as defined in the data sheet. Your ADC configuration determines how many clocks are used for each sample. That determines the time to convert.
If this answer doesn't suffice, show your code.
Cheers, Hal
2022-04-14 06:40 AM
The clock can reach 40 MHz, but the max sample rate is much much lower than the clock. Are you confusing the two?
2022-04-15 10:11 AM
That answered my question, thanks a lot!
2022-04-15 10:13 AM
Yes, I was confused why the actual sample rate doesn't match the clock I set up, but I think I figure it out now, thank you so much!
2022-04-15 10:47 AM
Typical methods to speed this up is double and triple interleaving where the "conversion" is pushed on to a different ADC after the initial sampling is made, cycling through the available converters. Throughput is then a function of the sample time rather than the entire sample+conversion time
2024-09-06 07:43 PM
Can you please explain this method more? I am very intrigued by the concept.