I am a newbie into the world of embedded systems.is it possible to enable clock for ADC and TIM4 overflow update.``` CLK_DeInit();
CLK_LSICmd(DISABLE); // Use internal clock.
CLK_HSICmd(ENABLE);
while(CLK_GetFlagStatus(CLK_FLAG_HSIR...
Hello,Really thank you very much @Artur IWANICKI . I was in a confusion that only one peripheral should only be connected to the clock at a time. Now the confusion is over, I really need a time counter of 2ms and ADC to work simultaneously. Your ans...