Hi,
It’s more correct to say the max sample rate of the Lite is 105MS/s - depending on the ADC clock, this might be (and is for the default examples, which capture at 7.37MHz * 4) less. If you want to see the sample rate, you can check scope.clock.adc_freq
. Bits here are just talking about the ADC resolution, with 10 bits meaning there can be 1024 possible values for each sample.
The ADC clock is usually based on the target clock as it greatly improve the quality of the data acquired. Typically, the ADC runs at 4x the speed of the target.
I’m not too familiar with how the data capture works on the FPGA, but I believe the capture starts when the ADC trigger is activated and ends once it has captured the requested number of samples. You can see how long the trigger is active for via scope.adc.trig_count
.
Alex