-
Notifications
You must be signed in to change notification settings - Fork 5
/
Led_control.v
89 lines (72 loc) · 2.19 KB
/
Led_control.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
82
83
84
85
86
87
88
89
//
// HPSDR - High Performance Software Defined Radio
//
// Metis code.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// Led_control - Copyright 2009, 2010, 2011 Phil Harman VK6APH
// Led control module
// setting on = high turns the LED on
// setting slow_flash = high flashes the LED once per second
// setting fast_flash = high flashes the LED 5 times per second
// setting vary = high flashes the LED fast then slow
// clock is at 25MHz
module Led_control (clock, on, slow_flash, fast_flash, vary, LED);
input clock;
input on;
input slow_flash;
input fast_flash;
input vary;
output reg LED;
parameter clock_speed = 1;
// calculate timer variables based on clock_speed passed
localparam slow_period = clock_speed/4'd2; // one flash per second
localparam fast_period = clock_speed/4'd10; // 5 flashes per second
reg [23:0]counter;
reg [24:0]period;
reg [1:0]swap;
always @ (posedge clock)
begin
if (on)
LED <= 1;
else if (vary) begin
if (swap == 0 || swap == 1)
period <= slow_period;
else
period <= fast_period;
if (counter == period) begin
LED <= ~LED;
counter <= 0;
swap <= swap + 1'b1;
end
else counter <= counter + 1'b1;
end
else if (slow_flash) begin
if (counter == slow_period) begin
LED <= ~LED;
counter <= 0;
end
else counter <= counter + 1'b1;
end
else if (fast_flash) begin
if (counter == fast_period) begin
LED <= ~LED;
counter <= 0;
end
else counter <= counter + 1'b1;
end
else LED <= 1'b0; // LED off
end
endmodule