clock function in STM8S103F3
Posted on January 22, 2018 at 07:19unsigned int clock(void) { unsigned char h = TIM1_CNTRH; unsigned char l = TIM1_CNTRL; return((unsigned int)(h) << 8 | l);}Can i know the function of above highlighted statement. I have experimented ...