-
Notifications
You must be signed in to change notification settings - Fork 0
/
Temporizador.v
81 lines (69 loc) · 1.61 KB
/
Temporizador.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
`timescale 1ns / 1ps
//////////////////////////////////////////////////////////////////////////////////
// Company:
// Engineer:
//
// Create Date: 19:28:49 08/24/2015
// Design Name:
// Module Name: Temporizador
// Project Name:
// Target Devices:
// Tool versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//////////////////////////////////////////////////////////////////////////////////
module Temporizador(
input restart,start_timer,clk,peso_excesivo,bloqueo_activado, //entradas
output reg t_expired, //salidas
output reg [6:0] sseg
);
//Estas variables se encargan de realizar la division de frecuencia
reg[50:0] count;
reg[1:0] state_reg, state_next;
reg clk2;
//Estas variables se encargan de verificar el comportamiento del temporizador
reg[3:0] countValue;
parameter terminalCount = 5;
//divisor de reloj de 100 MHz a 1 Hz
always @(posedge clk)
begin
if(count == 51'd50_000_000)
begin
count<= 0;
clk2 <= ~clk2;
end
else
begin
count <= count + 1;
end
end
//Se encarga del funcionamiento del temporizador
always@(posedge clk2)
begin
t_expired <= 0;
countValue <= 0;
sseg[6:0] <= 7'b0000001;
if(restart)
countValue <= 0;
else if((peso_excesivo) || (bloqueo_activado))
sseg[6:0] <= 7'b0000001;
else
begin
if(start_timer) begin
if(countValue == terminalCount - 1)
begin
t_expired <= 1;
sseg[6:0] <= 7'b0000110;
end
else
countValue <= countValue + 1;
end
end
end
endmodule