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

          新聞中心

          EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > AVR和51單片機(jī)串口通信簡(jiǎn)單實(shí)驗(yàn)

          AVR和51單片機(jī)串口通信簡(jiǎn)單實(shí)驗(yàn)

          作者: 時(shí)間:2016-11-30 來(lái)源:網(wǎng)絡(luò) 收藏
          void writedata(uchar data)
          {
          wait();
          RS=1;
          RW=0;
          __no_operation();
          DATA=data;
          __no_operation();
          EN=1;
          __no_operation();
          __no_operation();
          EN=0;
          }

          void displayonechar(uchar x,uchar y,uchar dda)
          {
          y&=0x01;
          x&=0x0f;
          if(y)x|=0x40;
          x|=0x80;
          writecmd(x);
          writedata(dda);
          }
          void displaychar(uchar x,uchar y,uchar *p)
          {
          y&=0x01;
          x&=0x0f;
          while(*p!=