// 最简单的延时函数, 不建议使用
// SYSCLK = 168MHz
void delay(__IO uint32_t nCount)
{
	for (; nCount ! = 0; nCount—);
}