Delay Function Without SysTick_Handler Interrupt
Posted on May 27, 2013 at 15:58Hello , I want to try use a function that is without SysTick_Handler Interrupt : I wrote this function : void DelayUs(int us) { unsigned int cnt; while(us-- >0) { cnt = SysTick_GetCounter(); // get systick count...