收藏 分销(赏)

EDA课程设计电子时钟.doc

上传人:pc****0 文档编号:6652628 上传时间:2024-12-19 格式:DOC 页数:21 大小:858.50KB
下载 相关 举报
EDA课程设计电子时钟.doc_第1页
第1页 / 共21页
EDA课程设计电子时钟.doc_第2页
第2页 / 共21页
EDA课程设计电子时钟.doc_第3页
第3页 / 共21页
EDA课程设计电子时钟.doc_第4页
第4页 / 共21页
EDA课程设计电子时钟.doc_第5页
第5页 / 共21页
点击查看更多>>
资源描述

1、EDA技术课程设计课题: 电子时钟 系 别: 电气与电子工程系专 业: 电子信息工程姓 名: 学 号: 指导教师: 河南城建学院2012年6月 日成绩评定一、指导教师评语(根据学生设计报告质量、答辩情况及其平时表现综合评定)。二、课程设计评分成绩: 2012年 6月 日 目 录一、设计目的1二、设计要求1三、总体设计方案要求11、设计的总体原理12、设计内容1四、EDA设计与仿真21、秒计时器模块22、分计数器模块43、时计数器模块64、分频器模块85、扫描电路模块96、译码显示器模块117、系统设计13五、硬件实现161、硬件实现步骤162、硬件实现结果16六、设计总结18七、参考文献18八

2、、设计生成的电路总图18一、设计目的这次课程设计主要是培养我们的实际动手能力及对EDA这门课程的深入的理解,增强我们对EDA程序设计流程的掌握。这个课题还要求我们掌握计数器的设计,六十进制计数器和二十四进制计数器的设计方法,以及各个进制之间的连接关系。二、设计要求1、具有时、分、秒,计数显示功能,以二十四时制循环计;2、设置启动、暂停开关,以满足启动计时和停止计时的功能;3、要求计时精度为0.01秒,最长时间为24H。4、具有时间设置(清零、调节小时和分功能)和闹钟功能;(扩展功能选作)5、整点报时,整点报时的同时,LED灯花样显示或者给段动听音乐;(扩展功能选作)三、总体设计方案要求1.设计

3、的总体原理要实现一个数字时钟系统,整个系统由主要模块电路模块和外部输入输出以及显示模块组成。首先分别实现单个模块的功能,然后再通过级联组合的方式实现对整个系统的设计。原理框图如下: 图3-1.总体设计框图2.设计内容电子时钟主要模块有四个,它包括脉冲信号产生模块(即分频电路)、计数模块(计数模块又分为秒计数模块、分计数模块和时计数模块)、码显示模块、复位模块。各个模块先用EDA技术中的VHDL语言编程仿真,再生成各个小模块的模拟元件,再元件例化,根据设计连接电路实现数字电子钟系统。四、EDA设计及仿真(各个模块设计程序、原理框图及仿真波形图)1.秒计时器(second)library ieee

4、;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity second is port(clk,reset:in std_logic; sec1,sec2:out std_logic_vector(3 downto 0); -秒计数器的两个输出; cin:out std_logic);end second;architecture second1 of second is signal sec1_t,sec2_t:std_logic_vector(3 downto 0); -秒计数器的中间信号;begin proce

5、ss(clk,reset) beginif reset=1then sec1_t=0000; -复位信号为1时秒信号复位; sec2_t=0000; elsif clkevent and clk=1then if sec1_t=1001then sec1_t=0000; -秒计数器的个位为9时变为0; if sec2_t=0101then sec2_t=0000; -秒计数器的十位为5时变为0; else sec2_t=sec2_t+1; -秒计数器的十位不为5时加1; end if; else sec1_t=sec1_t+1; -秒计数器的个位不为9时加1; end if; if sec1_

6、t=1001 and sec2_t=0101then -当计数器数值为59时向分为进1; cin=1; -向分进1,作为分的时钟信号; else cin=0; end if; end if;end process; sec1=sec1_t; sec2=sec2_t;end second1; 图4-1 秒计数器框图 图4-2 秒计数器时序仿真图秒计数器的波形分析:由程序及仿真波形图可以看出该计数器是59进制计数器,当sec1计数到9是sec2增加1,而sec1变为0,当sec2增加到5,而且sec1为9时,sec1,sec2变为0,cin1增加1向分计数器进位,提供一个分计数器的时钟信号。2.

7、分计数器(minute)分同秒计时器一样library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity minute is port(clk,reset:in std_logic; min1,min2:out std_logic_vector(3 downto 0); -秒计数器的两个输出; cin1:out std_logic);end minute;architecture minute1 of minute is signal min1_t, min2_t:std_logic_vector(3

8、 downto 0);begin process(clk,reset) begin if reset=1then min1_t=0000; -复位信号为1是分的信号复位为0; min2_t=0000; elsif clkevent and clk=1then if min1_t=1001then min1_t=0000; -分计数器的个位为9时变为0; if min2_t=0101then min2_t=0000; -分计数器的个位为5时变为0; else min2_t= min2_t+1; -分计数器的十位不为5时加1; end if; else min1_t= min1_t+1; -分计数

9、器的个位不为9时加1; end if; if min1_t=1001 and min2_t=0101then -计数器的值到59是向时进1; cin1=1; -向时的进位,相当于时的时钟信号; else cin1=0; end if; end if;end process; min1=min1_t; -把中间信号的值付给分信号; min2=min2_t;end minute1; 图4-3 分计数器的原理框图 图4-4 分计数器的时序仿真波形图 图4-5 分计数器程序错误显示图分计数器波形分析:在刚开始的仿真时,程序出现了一点的错误,引起错误的原因是min 1,min 2这两个信号的声明是错误的

10、,正确的声明方法是min1,min2。经过改正后程序是正确的,正确的波形显示该计数器和秒计数器是59进制计数器,当min1计数到9是min2增加1,而min1变为0,当min2增加到5,且min1增加到9时,min1,min2变为0,cin2增加1向时计数器进位,提供一个时计数器的时钟信号。3. 时计时器(hour)library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity hour is port (clk,reset:in std_logic; hour1,hour2:out std_log

11、ic_vector(3 downto 0); -时计数器的两个输出信号 end hour;architecture hour1 of hour is signal hour1_t,hour2_t:std_logic_vector(3 downto 0);beginprocess(clk,reset)begin if reset=1then hour1_t=0000; hour2_t=0000; elsif clkevent and clk=1then if hour1_t=0011 and hour2_t=0010then hour1_t=0000; -当时计数器的值达到23是,当分秒计数器都

12、到59时时计数器变为0; hour2_t=0000; else if hour1_t=0011then hour1_t=0000; -当时计数器的个位为3时值变为0; if hour2_t=0010then hour2_t=0000; -当时计数器的个位变2时值变为0; else hour2_t=hour2_t+1; -当时计数器的十位不为2时值加1; end if; else hour1_t=hour1_t+1; -当时计数器的个位不为3时值加1; end if; end if; end if;end process; hour1=hour1_t; hour2=hour2_t;end hou

13、r1;图4-6 时计数器原理框图图4-7 时计数器时序仿真波形图时波形图分析:由程序及时序仿真波形图可以知道该时计数器是二十四进制计数器,当hour1计数到3是hour2增加1,而hour1变为0,当hour2增加到2,且hour1增加到3时,hour2变为0,hour1也变为0。4. 分频器(freq_divider)library IEEE; use IEEE.std_logic_1164.all;use IEEE.std_logic_arith.all;use IEEE.std_logic_unsigned.all;entity freq_divider is port (reset,c

14、lk : in STD_LOGIC; Q: out STD_LOGIC);end freq_divider;architecture freq_divider1 of freq_divider is signal count50 : integer range 0 to 49; signal out1:std_logic;begin process (reset,clk) begin if reset=1 then count50=0; elsif clkevent and clk=1then count50= count50 + 1 ; -当时钟周期小于50是信号来时加1;out1= out

15、1; if count50=49 then count50=0;-50个时钟周期后计数器清零; out1=not out1; -当时钟周期达到50是输出信号反相,即有高电平变低电平或有低电平变高电平; end if ; end if; Q= out1; -把中间信号的值赋给总输出; end process;end freq_divider1;图4-8 分频器的原理框图 图4-9 分频器的时序仿真波形图 图4-10 分频器程序错误显示图分频器波形分析:在第一次仿真是显示程序是错误的,进过更改及调试程序正确了,由程序及时序仿真图可以知道该分频器是100倍分频,由于该设计的目的是设计一个数字电子钟,

16、可知时钟需要一个1s的时钟信号,必须用到分频器,该分频器的时钟信号的周期是100ns,经过三次次100倍分频,可以得到1s的时钟信号。也就是说在这个程序中要用到三个这样的分频器。5、扫描模块源程序library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity mux6 is port(clkscan,reset:in std_logic; in1,in2,in3,in4,in5,in6:in std_logic_vector(3 downto 0); BT:out std_logic_vector(

17、7 downto 0);-显示控制信号输出 A:out std_logic_vector(3 downto 0);-数码管显示数值输出end mux6;architecture mux60 of mux6 is signal cnt8:std_logic_vector(2 downto 0);begin process(clkscan,reset) begin if reset=1then cnt8=000;-异步复位 elsif clkscanevent and clkscan=1then-检测时钟上升沿 if cnt8=111then cnt8=000; else cnt8 BT = 00

18、000001 ; A BT = 00000010 ; A BT = 00000100 ; A BT = 00001000 ; A BT = 00010000 ; A BT = 00100000 ; A BT = 01000000;A BT = 10000000;A LED7 LED7 LED7 LED7 LED7 LED7 LED7 LED7 LED7 LED7 LED7=0000000;end case; end process;end behav;图4-13 译码显示电路的原理框图图4-16 译码显示电路的时序仿真波形图7、系统设计 将上述5个程序作为底层文件,存放在同一个文件夹中,然后按

19、下面的图将这几个文件连接起来,并用元件例化语句编写顶层文件的程序,如下:总程序(前面的分模块程序省略,下面只写了原件例化得程序)-my_components.vhd(package)-library IEEE; use IEEE.std_logic_1164.all;use IEEE.std_logic_arith.all;use IEEE.std_logic_unsigned.all;-package my_components is-component second is port(clk,reset:in std_logic; sec1,sec2:out std_logic_vector

20、(3 downto 0); cin:out std_logic);end component;-component minute is port(clk,reset:in std_logic; min1,min2:out std_logic_vector(3 downto 0); cin1:out std_logic);end component;-component hour is port (clk,reset:in std_logic; hour1,hour2:out std_logic_vector(3 downto 0); end component;-component freq_

21、divider is port (reset,clk : in STD_LOGIC; Q: out STD_LOGIC);end component;-component mux6 is port(clkscan,reset:in std_logic; in1,in2,in3,in4,in5,in6:in std_logic_vector(3 downto 0); BT:out std_logic_vector(7 downto 0); A:out std_logic_vector(3 downto 0);end component;-component yima is port(BT1:in

22、 std_logic_vector(3 downto 0); LED7:out std_logic_vector(6 downto 0);end component;-end my_components;-time-library IEEE; use IEEE.std_logic_1164.all;use IEEE.std_logic_arith.all;use IEEE.std_logic_unsigned.all;use work.my_components.all;-entity time is port(clk,clkscan,reset:in std_logic; LED7:out

23、std_logic_vector(6 downto 0); BT:out std_logic_vector(7 downto 0);end time;-architecture structural of time is signal x3,x4,x5:std_logic; signal x6,x7,x8,x9,x10,x11,x12:std_logic_vector(3 downto 0);begin u1:component second port map (x3,reset,x6,x7,x4); u2:component minute port map (x4,reset,x8,x9,x

24、5); u3:component hour port map(x5,reset,x10,x11); u4:component freq_divider port map(clk,reset,x3); u5:component mux6 port map(clkscan,reset,x6,x7,x8,x9,x10,x11,BT,x12); u6:component yima port map(x12,LED7);end structural;- 图4-17 总程序的时序仿真波形图程序仿真波形图分析:在这个程序中两个时钟信号clk,clkscan是不同频率的,clk时钟信号控制秒计数器,它的周期是

25、100ns,而clkscan控制着整个程序,它的频率可以是任意设定的。五、硬件实现 1、给出硬件实现实验步骤:打开Quartus9.0软件,建立进程,进程的名字和程序的名字相同;打开新建选择VHDL File,然后把程序输入进去;保存文件点击软件页面上方的编译按键进行编译;编译成功后,进行软件仿真,点击File选择Vector Waveform File,然后点击鼠标右键选inset node or bus键,把脚码输入进去,再进行脚码设定;然后保存,点击Assigment中的settings选择时序仿真,进行程序的时序仿真;时序仿真成功后,点击上方Assigment Editor键进行脚码锁

26、定;脚码锁定中我们用了模式六。 图5-1 脚码锁定图2.硬件仿真结果在这次设计中刚开始由于种种原因我们的硬件仿真结果没能够正常的显示出来,经多次的努力我们修改了程序后,最终仿真结果显示是正确的。下面我照了一些我们仿真的硬件结果,如下图所示: 图5-2 硬件仿真结果图示一图5-3 硬件仿真结果图示二图5-4 硬件仿真结果图示三图5-5 硬件仿真结果图示四六、设计总结在这次设计过程中,我们在老师的指导下对VHDL这门课程逐步加深了了解,但是在设计中遇到很多问题,其中在程序设计方面的问题在我们查阅资料后的到了解决,在程序软件的实现过程中所遇到的问题最后也得到了圆满的解答,但是在程序最后的硬件仿真过程

27、中遇到的问题还是没能够得到解决,这也是这次课程设计中的遗憾之处。计数器的设计并不困难,就是用了三个计数器,其中秒和分计数器是六十进制计数器,时计数器是二十四计数器,并且秒和分各有一个进位端,秒到59时向分进一位,分到59时向时进一位,这个设计中的主要问题是时分秒与一码电路的连接,在这里我们用到了动态扫描电路,在脚码锁定时我们用了模式六,但是结果不理想,这次设计的硬件仿真结果不理想。经过这次课程设计我还得到了一点感想,无论我们做什么事情都要懂得团结,在生活中我们自己的力量是极其薄弱的,有时候只有我们大家团结一致才能攻克所有困难,战无不胜。 七参考文献 百度文库,基于EDA的数字电子钟的实现; Volnei A.Pedroni.VHDL 数字电路设计教程.电子工业出版社; 杭州康芯电子有限公司.EDA技术实验讲义;八、设计生成的电路图 附表:程序生成电路总图21

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
搜索标签

当前位置:首页 > 百科休闲 > 其他

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服