-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathLed_flash.v
59 lines (49 loc) · 1.64 KB
/
Led_flash.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
//
// 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_flash - Copyright 2009, 2010, 2011 Phil Harman VK6APH
//////////////////////////////////////////////////////////////
//
// Flash LED
//
//////////////////////////////////////////////////////////////
// Turn LED on whenever signal is high and then remain on
// for 'period' seconds when it goes low
// 9 Feb 2018 - Inceased period and counter to 25 bits so can clock at 125MHz now
module Led_flash (clock, signal, LED, period);
input clock;
input signal;
output LED;
input [24:0]period;
reg [24:0]counter;
reg LED;
// Odyssey 2: we invert the LED signal
always @ (posedge clock)
begin
if (signal) begin
counter <= 0;
LED <= 1'b1; // turn LED on whilst signal is high
end
else begin
if (counter == period) begin
LED <= 1'b0; // turn LED off when signal low after time period
end
else counter <= counter + 1'b1;
end
end
endmodule