版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、LED數(shù)碼管顯示的VHDL設(shè)計(jì)桂林師范高等??茖W(xué)校羊日飛LED數(shù)碼管顯示實(shí)例運(yùn)行環(huán)境n紅色颶風(fēng)二代XILINX FPGA開發(fā)板 RC2-3S400 LED數(shù)碼管的板級(jí)硬件電路n四位8段式共陰數(shù)碼管1位2位3位4位位線位線段線段線LED數(shù)碼管的板級(jí)硬件電路nLED數(shù)碼管位線驅(qū)動(dòng)電路qSEG_LED_S0、 SEG_LED_S1、 SEG_LED_S2 SEG_LED_S3 接FPGA相應(yīng)引腳LED數(shù)碼管的板級(jí)硬件電路n8段式共陰數(shù)碼管的段碼一、LED數(shù)碼管的靜態(tài)顯示LED數(shù)碼管的靜態(tài)顯示n四位數(shù)碼管顯示相同的字符n依次顯示從0F的各個(gè)字符,每隔1s顯示一個(gè)字符。 四位數(shù)碼管器件內(nèi)部復(fù)用了每位數(shù)碼
2、管的8條數(shù)據(jù)線(a,b,c,d,e,f,g,dp) 若同時(shí)將四位數(shù)碼管的位線(共陰公共端)接到低電平,則相當(dāng)于同時(shí)選中數(shù)碼管的4個(gè)位。 此時(shí)若段線輸入某個(gè)段碼,則四位數(shù)碼管顯示段碼對(duì)應(yīng)的同一字符。LED數(shù)碼管靜態(tài)顯示的芯片級(jí)設(shè)計(jì)框圖時(shí)鐘源50MHz分頻器計(jì)數(shù)器數(shù)碼管驅(qū)動(dòng)四位LED數(shù)碼管FPGA1/50000000分頻輸出時(shí)鐘信號(hào)的頻率是1Hz,周期為1s。16進(jìn)制計(jì)數(shù)器即有16種狀態(tài),每經(jīng)過1s計(jì)數(shù)值加“1”,也即跳到下一個(gè)狀態(tài)。段碼譯碼器將16種狀態(tài)碼轉(zhuǎn)換為相應(yīng)的8位二進(jìn)制LED數(shù)碼管段碼段碼。1/50000000分頻器(Divider)entity clkdiv is port( rese
3、t: in std_logic;clkin: in std_logic;clkout: buffer std_logic );end clkdiv;實(shí)體1/50000000分頻器(Divider)architecture clkdiv_stru of clkdiv is signal count: integer range 0 to 25000000:=0;begin process( reset , clkin) begin if reset=0 then count=0; q=0; elsif clkinevent and clkin=1 then if count=25000000 t
4、hen count=0; clkout= not clkout; else count=count+1; end if; end if; end process; end clkdiv_stru;結(jié)構(gòu)體16進(jìn)制計(jì)數(shù)器entity counter is port( reset: in std_logic; clock: in std_logic; countout: out std_logic_vector(3 downto 0) );end counter;architecture counter_stru of counter is signal count: std_logic_vecto
5、r(3 downto 0);begin process( reset , clock) begin if reset=0 then count=“0000”; elsif clockevent and clock=1 then if count=“1111” then count=“0000”; else count=count+ “0001” ; end if; end if; end process; countout Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y , clkin= , clkout=
6、 ); counter_m:counter port map( reset= , clock= ,countout= ); decoderledout_m:decoderledout port map( state= , Y= ); ledbits=“1111”;end led8seg_stru;三個(gè)子模三個(gè)子模塊的元件塊的元件聲明聲明resetmclki_clkreseti_clki_statei_stateledsegsLED數(shù)碼管顯示的VHDL代碼綜合結(jié)果(頂層)LED數(shù)碼管顯示的VHDL代碼綜合結(jié)果(子模塊)二、LED數(shù)碼管的動(dòng)態(tài)顯示LED數(shù)碼管的動(dòng)態(tài)顯示n四位數(shù)碼管顯示不同的字符,比
7、如“1234”n實(shí)現(xiàn)原理:n由于四位數(shù)碼管器件內(nèi)部復(fù)用了每位數(shù)碼管的8條數(shù)據(jù)線(a,b,c,d,e,f,g,dp),所以若要四位數(shù)碼管顯示不同的字符,則一位顯示時(shí)(占用了段線)其它三位應(yīng)該不能顯示。(通過控制位線實(shí)現(xiàn))LED數(shù)碼管的動(dòng)態(tài)顯示n實(shí)現(xiàn)原理:n由于人眼的視覺暫留效應(yīng),當(dāng)循環(huán)時(shí)間很短時(shí),人眼看到的效果如下圖所示:n動(dòng)態(tài)刷新時(shí)間:q電視的場(chǎng)頻:50Hz,即每20ms更新一幅畫面q刷新頻率太慢則會(huì)有閃爍現(xiàn)象q刷新頻率太快則則亮度不夠q一般在幾ms左右作業(yè):LED數(shù)碼管動(dòng)態(tài)顯示n四位數(shù)碼管顯示不同的字符,比如“1234”修改分頻器architecture clkdiv_stru of clk
8、div is signal count: integer range 0 to 25000000:=0;begin process( reset , clkin) begin if reset=0 then count=0; q=0; elsif clkinevent and clkin=1 then if count=25000000 then count=0; clkout= not clkout; else count=count+1; end if; end if; end process; end clkdiv_stru;結(jié)構(gòu)體architecture clkdiv_stru of
9、clkdiv is signal count: integer range 0 to 50000:=0;begin process( reset , clkin) begin if reset=0 then count=0; q=0; elsif clkinevent and clkin=1 then if count=49999 then count=0; clkout= not clkout; else count=count+1; end if; end if; end process; end clkdiv_stru;修改計(jì)數(shù)器architecture counter_stru of
10、counter is signal count: std_logic_vector(3 downto 0);begin process( reset , clock) begin if reset=0 then count=“0000”; elsif clockevent and clock=1 then if count=“1111” then count=“0000”; else count=count+ “0001” ; end if; end if; end process; countout=count;end counter_stru;architecture counter_st
11、ru of counter is signal count: std_logic_vector(3 downto 0);begin process( reset , clock) begin if reset=0 then count=“0000”; elsif clockevent and clock=1 then if count=“0011” then count=“0000”; else count=count+ “0001” ; end if; end if; end process; countout Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y Y = “00111111”; ledbits Y = “00000110”; ledbits Y = “
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024標(biāo)準(zhǔn)附條件借款合同書
- 2024二級(jí)建造師勞動(dòng)合同
- 2024商場(chǎng)日常保潔服務(wù)合同
- 教育培訓(xùn)崗位聘任合同
- 湖北省武漢市七年級(jí)上學(xué)期語文期中試卷7套【附答案】
- 建筑工地施工人員合同范本2024
- 學(xué)術(shù)資源互享互惠協(xié)議
- 家庭長期發(fā)展規(guī)劃協(xié)議書
- 省級(jí)總代理授權(quán)協(xié)議
- 2023年高考地理復(fù)習(xí)精題精練-中國的能源安全(新高考專用)(解析版)
- 2023年天津公務(wù)員已出天津公務(wù)員考試真題
- 2025年高考數(shù)學(xué)專項(xiàng)題型點(diǎn)撥訓(xùn)練之初等數(shù)論
- 教科版三年級(jí)科學(xué)上冊(cè)《第1單元第1課時(shí) 水到哪里去了》教學(xué)課件
- 通信技術(shù)工程師招聘筆試題與參考答案(某世界500強(qiáng)集團(tuán))2024年
- 國際貿(mào)易術(shù)語2020
- 國網(wǎng)新安規(guī)培訓(xùn)考試題及答案
- 2024至2030年中國節(jié)流孔板組數(shù)據(jù)監(jiān)測(cè)研究報(bào)告
- 黑龍江省哈爾濱市師大附中2024-2025學(xué)年高一上學(xué)期10月階段性考試英語試題含答案
- 第六單元測(cè)試卷-2024-2025學(xué)年統(tǒng)編版語文三年級(jí)上冊(cè)
- 【課件】Unit4+Section+B+(Project)課件人教版(2024)七年級(jí)英語上冊(cè)
- 青少年法治教育實(shí)踐基地建設(shè)活動(dòng)實(shí)施方案
評(píng)論
0/150
提交評(píng)論