晶振  30M
SysCtrlRegs.PLLCR = 0x01;
延时函数为
void Delay(Uint16  data)                        //延时函数
{
        Uint16        i,j,temp;
        temp=250;
        for (i=0;i<temp;i++)
         {
        for (j=0;j<data;j++) { ; }       
    }
}
请问:Delay(60000)  延时时长是1s还是10s?   |