<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 基于51單片機(jī)的串口檢測(cè)程序

          基于51單片機(jī)的串口檢測(cè)程序

          作者: 時(shí)間:2012-07-07 來(lái)源:網(wǎng)絡(luò) 收藏

          void send_char_com( unsigned char ch)
          {
          SBUF=ch;
          while (TI== 0 );
          TI= 0 ;
          }

          本文引用地址:http://www.ex-cimer.com/article/171192.htm

          //向發(fā)送一個(gè)字符串,strlen為該字符串長(zhǎng)度
          void send_string_com( unsigned char *str, unsigned int strlen)
          {
          unsigned int k= 0 ;
          do
          {
          send_char_com(*(str + k));
          k++;
          } while (k strlen);
          }


          //接收中斷函數(shù)
          void serial () interrupt 4 using 3
          {
          if (RI)
          {
          unsigned char ch;
          RI = 0 ;
          ch=SBUF;
          if (ch> 127 )
          {
          count3= 0 ;
          inbuf1[count3]=ch;
          checksum= ch- 128 ;
          }
          else
          {
          count3++;
          inbuf1[count3]=ch;
          checksum ^= ch;
          if ( (count3==(INBUF_LEN- 1 )) (!checksum) )
          {
          read_flag= 1 ; //如果接收的數(shù)據(jù)達(dá)到INBUF_LEN個(gè),且校驗(yàn)沒(méi)錯(cuò),
          //就置位取數(shù)標(biāo)志
          }
          }
          }
          }


          main()
          {
          init_serialcomm(); //初始化串口
          while ( 1 )
          {
          if (read_flag) //如果取數(shù)標(biāo)志已置位,就將讀到的數(shù)從串口發(fā)出
          {
          read_flag= 0 ; //取數(shù)標(biāo)志清0
          send_string_com(inbuf1,INBUF_LEN);
          }
          }

          }


          上一頁(yè) 1 2 下一頁(yè)

          評(píng)論


          相關(guān)推薦

          技術(shù)專(zhuān)區(qū)

          關(guān)閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();