User Activity

I have some confusion about sampling rate in adc,in data sheet it conversion time takes 14 clock cycles, then i am using internal oscillator 16mhz and prescalar selection is 8 and i get conversation time is 3.5micro seconds,i want know about exactly ...
#include <stdint.h>#include<iostm8s.h>void main(void){         TIM2_PSCR = 0b00000111;  TIM2_EGR= 0x01; TIM1_CR1 = 0x01;    PD_DDR = 0x01; PD_CR1 = 0x01; while(1) { if ( ( ((uint16_t)TIM2_CNTRH << 8) + (uint16_t)TIM2_CNTRL ) >= 15625 )  { TIM2_...