while(1)
{
; //加 一个分号
}
while(1)
{
}
while(1);
这个比较常见
static void SPIFlashWaitWhenBusy(void) //等待状态寄存器变为0
{
while (SPIFlashReadStatusReg1() & 1);
}