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

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > proteus與keil Cx51的單片機仿真(測量脈沖寬度)

          proteus與keil Cx51的單片機仿真(測量脈沖寬度)

          作者: 時間:2016-11-24 來源:網(wǎng)絡(luò) 收藏
          利用門控位測試INT0引腳上出現(xiàn)的脈沖的寬度,并以機器周期數(shù)的形式通過發(fā)光二極管顯示。

          電路圖:

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



          U1源程序:

          #include
          sbit P1_1=P1^1;
          void main(void)
          {
          TMOD=0x02;
          EA=1;
          ET0=1;
          TH0=256-250;
          TL0=256-250;
          TR0=1;
          while(1);
          }
          void Time0(void)interrupt 1 using 0
          {P1_1=~P1_1;}

          U2源程序:

          #include
          #include
          void main(void)
          {
          TMOD=0x0a;
          EA=1;
          ET0=0;
          TR0=1;
          TH0=0;
          TL0=0;
          while(1)
          {
          while(INT0==0);
          TL0=0;
          while(INT0==1);
          P1=TL0;
          }
          }




          評論


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

          關(guān)閉