打印

典型的单片机串口程序,你读得懂吗,有问题?

[复制链接]
1838|2
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
uuuren|  楼主 | 2010-11-25 17:36 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
/*** Initialization of Serial Port(Ex.Baud Rate setting) ***/
void InitSerial(void)
{SCON = 0x50; // SERIAL MODE 1, SM00 = 0, SM01 =1, REN=1
TMOD |= 0x20; // Timer1 MODE 2
PCON |= 0x80; // SMOD0 = 1
TL1 = 0xFC;  // Baud Rate Setting to 115200bps
TH1 = 0xFC;  // Baud Rate Setting to 115200bps
TR1 = 1;  // Timer1 START
    txbufrflag = 1;
RI = 0;
TI = 0;
txdptro = 0;
txdptri = 0;
rxdptro = 0;
rxdptri = 0;
ES = 1;  //  1}

void PU_INT4(void) interrupt 4 //中断
{  EA = 0;     
     if (RI)
        {  RI = 0;
          uartrxd[rxdptri++] = SBUF; }
     if (TI)
     { TI = 0;
        if (txdptro == txdptri)
             txbufrflag = 1;
         else
             SBUF = uarttxd[txdptro++];
     }
     EA = 1;
}

char putchar(char  accum)  // 串行口输出
{  while (((txdptri+1) & 0x0f) == txdptro);
    uarttxd[txdptri++]=accum;
    if (txbufrflag)
       {txbufrflag = 0;
       TI = 1;}
    return accum;}

unsigned char GetcomLn(unsigned char *temp)
{unsigned char byData,count;
  count = 0;
while(rxdptro != rxdptri)
  {temp[count++]  = uartrxd[rxdptro++];
    for(byData = 0; byData < 30; byData++)
       {if (rxdptri == rxdptro)  wait_1us(5);
          else  break;}
   }
temp[count] = 0;  //字符串最后加一空格
return count;
}

请教问题:putchar(char accum)while (((txdptri+1) & 0x0f) == txdptro);有什么作用?
      以及GetcomLn中那个for循环有什么用?
沙发
NE5532| | 2010-11-25 19:00 | 只看该作者
如果这不是标准库的话,我就看不懂了。没注释,没高层调用,我咋知道编程序的想干啥。

使用特权

评论回复
板凳
yewuyi| | 2010-11-25 23:08 | 只看该作者
不知道这个标准是谁定义的?!

最关键的是:LZ你发错地方了,这个是51的程序,你应该发到侃单片机去。。。

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

44

主题

74

帖子

0

粉丝