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

          新聞中心

          EEPW首頁 > EDA/PCB > 設(shè)計(jì)應(yīng)用 > 基于FPGA的按鍵彈跳消除模塊的研究與應(yīng)用

          基于FPGA的按鍵彈跳消除模塊的研究與應(yīng)用

          作者: 時(shí)間:2012-10-17 來源:網(wǎng)絡(luò) 收藏

          2.2 程序設(shè)計(jì)

          設(shè)計(jì)一個(gè)高脈沖計(jì)數(shù)器count1和一個(gè)低脈沖計(jì)數(shù)器conut0。引入一個(gè)采樣脈沖信號(hào)clk,對(duì)輸入信號(hào)button_in進(jìn)行采樣,并對(duì)clk進(jìn)行計(jì)數(shù)。若button_in為高電平,count1做加法計(jì)數(shù),直到count1各位全為1,停止計(jì)數(shù),歸零,使消抖后的輸出信號(hào)button_out輸出1。若button_in為低電平,count0做加法計(jì)數(shù),直到count0各位全為1,停止計(jì)數(shù)歸零,并使消抖后的輸出信號(hào)button_out輸出0。

          部分程序如下:

          module filter(clk,

          reset,

          button_in,

          button_out);

          input clk;

          input reset;

          input button_in;

          output button_out;

          wire buttong_out1;

          reg [20:0] count0;

          reg [20:0] count1;

          reg button_out1_reg;

          ……

          assign button_out=button_out1_reg;

          //對(duì)輸入進(jìn)行采樣,計(jì)數(shù)

          always@(posedge clk or negedge reset)

          begin

          if(!reset) count1=21'h000000;

          else if(button_out1==1'b1) count1=count1+1;//對(duì)高電平計(jì)數(shù)

          else count1=21'h000000;

          end

          always@(posedge clk or negedge reset)

          begin

          if(!reset) count0=21'h000000;

          else if(button_out1==1'b0) count0=count0+1;//對(duì)低電平計(jì)數(shù)

          else count0=21’h000000;

          end

          //輸出

          always@(posedge clk or negedge reset

          begin

          if(!reset) button_out1_reg=1'b1;

          else if(count0==21'h1312D0) //判斷低電平信號(hào)是否符合輸出條件

          button_out1_reg=1'b0; //如果符合條件,則輸出低電平

          else if(count1==21'h1312D0) //判斷低電平信號(hào)是否符合輸出條件

          button_out1_reg=1'b1; //如果符合條件,則輸出高電平

          else button_out1_reg=button_out1_reg;

          end

          endmodule

          基于FPGA的按鍵彈跳消除電路的研究與應(yīng)用



          關(guān)鍵詞: FPGA 按鍵 彈跳消除 模塊

          評(píng)論


          相關(guān)推薦

          技術(shù)專區(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); })();