//延時(shí)
void DelayMS(uint ms)
{
uchar i;
while(ms--) for(i=0;i120;i++);
}
//主程序
void main()
{
uchar c=0x80;
SCON=0x00; //串口模式 0,即移位寄存器輸入/輸出方式
TI=1;
while(1)
{
c=_crol_(c,1);
SBUF=c;
while(TI==0); //等待發(fā)送結(jié)束
TI=0; //TI 軟件置位
DelayMS(400);
}
}
c語言相關(guān)文章:c語言教程
評(píng)論