色婷婷AⅤ一区二区三区|亚洲精品第一国产综合亚AV|久久精品官方网视频|日本28视频香蕉

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 115.2K串行通信C語言示例

          115.2K串行通信C語言示例

          作者: 時(shí)間:2010-09-28 來源:網(wǎng)絡(luò) 收藏

          //115.2k程序,校驗(yàn)方式為簡(jiǎn)單雙向校驗(yàn),
          //而且是必要的,因?yàn)槿魏尾捎弥袛?、crc等的方法
          //均很難保證速度和避免錯(cuò)誤.
          //總體速度5KB/秒

          本文引用地址:http://cafeforensic.com/article/173198.htm

          //單片機(jī)程序
          //使用22.1184晶振
          unsigned char time,b_break,b_break_3;
          //35.555ms
          void int_t0(void) interrupt 1 {
          TH0=0;
          if ((++b_break_3)>2) b_break=1;
          time++;
          }

          //

          unsigned char rec(void) {
          TH0=0;b_break_3=0;b_break=0;
          while (RI==0) {
          if (b_break) return(1); //等待pc發(fā)送100ms超時(shí)
          }
          RI=0;
          SBUF=SBUF;
          return(SBUF);
          }
          /*返回1表示失敗*/
          bit sen(unsigned char d) {
          SBUF=d;
          TH0=0;b_break_3=0;b_break=0;
          while (RI==0) {
          if (b_break) return(1); //等待pc送回相同字節(jié)數(shù)據(jù),100ms超時(shí)
          }
          RI=0;
          if (SBUF!=d) return(1);
          return(0);
          }

          void main(void) {
          unsigned int i;
          unsigned char d;
          EA=1;
          SCON=0xd8;PCON=0x80;
          TMOD=0x21;
          TL1=TH1=0xff;TR1=1;
          TH0=0;ET0=TR0=1;
          while (1) {
          d=rec();
          if ((!b_break)(d==0x55)) {
          d=rec();
          if (!b_break) {
          if (d==0xaa) {
          //接收到pc送來的要求發(fā)送指令0xaa55
          for (i=0;i1000;i++) {
          if (sen(i)) {
          //發(fā)送錯(cuò)誤
          break;
          }
          }
          } else if (dd==0xaa) {
          //接收到pc送來的要求接收指令0xaaaa
          for (i=0;i1000;i++) {
          d=rec();
          if (!b_break) {
          //正確接收處理
          } else {
          //接收錯(cuò)誤處理
          break;
          }
          }
          }
          }
          }
          }
          }

          //電腦程序tc2.0
          #i nclude stdio.h
          #i nclude dos.h
          #i nclude process.h
          #i nclude string.h
          #i nclude conio.h
          #i nclude dir.h>


          上一頁 1 2 下一頁

          關(guān)鍵詞: 示例 語言 通信 串行 115.2K

          評(píng)論


          相關(guān)推薦

          技術(shù)專區(qū)

          關(guān)閉