




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、LED数码管显示的VHDL设计桂林师范高等专科学校羊日飞LED数码管显示实例运行环境n红色飓风二代XILINX FPGA开发板 RC2-3S400 LED数码管的板级硬件电路n四位8段式共阴数码管1位2位3位4位位线位线段线段线LED数码管的板级硬件电路nLED数码管位线驱动电路qSEG_LED_S0、 SEG_LED_S1、 SEG_LED_S2 SEG_LED_S3 接FPGA相应引脚LED数码管的板级硬件电路n8段式共阴数码管的段码一、LED数码管的静态显示LED数码管的静态显示n四位数码管显示相同的字符n依次显示从0F的各个字符,每隔1s显示一个字符。 四位数码管器件内部复用了每位数码
2、管的8条数据线(a,b,c,d,e,f,g,dp) 若同时将四位数码管的位线(共阴公共端)接到低电平,则相当于同时选中数码管的4个位。 此时若段线输入某个段码,则四位数码管显示段码对应的同一字符。LED数码管静态显示的芯片级设计框图时钟源50MHz分频器计数器数码管驱动四位LED数码管FPGA1/50000000分频输出时钟信号的频率是1Hz,周期为1s。16进制计数器即有16种状态,每经过1s计数值加“1”,也即跳到下一个状态。段码译码器将16种状态码转换为相应的8位二进制LED数码管段码段码。1/50000000分频器(Divider)entity clkdiv is port( rese
3、t: in std_logic;clkin: in std_logic;clkout: buffer std_logic );end clkdiv;实体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;结构体16进制计数器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;三个子模三个子模块的元件块的元件声明声明resetmclki_clkreseti_clki_statei_stateledsegsLED数码管显示的VHDL代码综合结果(顶层)LED数码管显示的VHDL代码综合结果(子模块)二、LED数码管的动态显示LED数码管的动态显示n四位数码管显示不同的字符,比
7、如“1234”n实现原理:n由于四位数码管器件内部复用了每位数码管的8条数据线(a,b,c,d,e,f,g,dp),所以若要四位数码管显示不同的字符,则一位显示时(占用了段线)其它三位应该不能显示。(通过控制位线实现)LED数码管的动态显示n实现原理:n由于人眼的视觉暂留效应,当循环时间很短时,人眼看到的效果如下图所示:n动态刷新时间:q电视的场频:50Hz,即每20ms更新一幅画面q刷新频率太慢则会有闪烁现象q刷新频率太快则则亮度不够q一般在几ms左右作业:LED数码管动态显示n四位数码管显示不同的字符,比如“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;结构体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;修改计数器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等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024年系统分析师考试模拟分析试题及答案
- 防拐骗安全教育课件模板
- 2025餐馆转让的合同协议书
- 盐城幼儿师范高等专科学校《城市公共事业管理理论与实践》2023-2024学年第二学期期末试卷
- 山西省吕梁市兴县多校2025届九年级上学期12月月考数学试卷(含答案)
- 浙江省温州市2025届高三下学3月二模试题 物理 含解析
- 民办万博科技职业学院《音乐律动(二)》2023-2024学年第一学期期末试卷
- 河北师范大学汇华学院《大数据数据库应用技术》2023-2024学年第二学期期末试卷
- 广东佛山市石门中学2025届高三新时代NT抗疫爱心卷(II)生物试题含解析
- 山东省广饶一中重点中学2025届高三下学期返校热身考试化学试题含解析
- 高三英语语法填空专项训练100(附答案)及解析
- GJB9001C-2017管理手册、程序文件及表格汇编
- 阿斯丹商赛运营规划方案
- 《HSK标准教程2》第4课课件
- 300立方米柴油储罐设计
- 2024年事业单位考试贵州省毕节地区毕节市A类《职业能力倾向测验》统考试题含解析
- (完整文本版)新概念英语第一册单词表默写版1-144
- 《我的心灵疗愈》
- 中国教育史(第四版)全套教学课件
- 2022年4月自考02400建筑施工(一)试题及答案含评分标准
- 志愿者申请登记表
评论
0/150
提交评论