SysTick->CTRL = 0; // Disable SysTick
SysTick->LOAD = num * k * scale; // Count from num*k*scale to 0
SysTick->VAL = 0; // Clear current value as well as count flag
SysTick->CTRL = 5; // Enable SysTick timer with processor clock
while((SysTick->CTRL & 0x00010000)==0); // Wait until count flag is set
SysTick->CTRL =0; // Disable SysTick
}