ed07f21f4678e0d19c31b7117f8343b9f1004347
[debian/gnuradio] / gr-sounder / src / fpga / lib / strobe.v
1 // -*- verilog -*-
2 //
3 //  USRP - Universal Software Radio Peripheral
4 //
5 //  Copyright (C) 2007 Corgan Enterprises LLC
6 //
7 //  This program is free software; you can redistribute it and/or modify
8 //  it under the terms of the GNU General Public License as published by
9 //  the Free Software Foundation; either version 2 of the License, or
10 //  (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 //
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 51 Franklin Street, Boston, MA  02110-1301  USA
20 //
21
22 module strobe(clk_i,rst_i,ena_i,rate_i,strobe_i,strobe_o,count_o);
23    parameter width = 16;
24
25    input              clk_i;
26    input              rst_i;
27    input              ena_i;
28    input  [width-1:0] rate_i;   // Desired period minus one
29    input              strobe_i;
30    output             strobe_o;
31    output [width-1:0] count_o;
32
33    
34    reg [width-1:0] counter;
35
36    always @(posedge clk_i)
37      if(rst_i | ~ena_i)
38        counter <= 32'hFFFFFFFF; // First period is short by one
39      else if(strobe_i)
40        if(counter == rate_i)
41          counter <= 0;
42        else 
43          counter <= counter + 1;
44
45    assign strobe_o = (counter == rate_i) & strobe_i;
46    assign count_o = counter;
47    
48 endmodule // strobe