Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / general / gri_lfsr_32k.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2004 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio 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, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio 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 GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef INCLUDED_GRI_LFSR_32k_H
24 #define INCLUDED_GRI_LFSR_32k_H
25
26 #include <gri_lfsr_15_1_0.h>
27
28 /*!
29  * \brief generate pseudo-random sequence of length 32768 bits.
30  *
31  * This is based on gri_lfsr_15_1_0 with an extra 0 added at the end
32  * of the sequence.
33  */
34
35 class gri_lfsr_32k {
36   gri_lfsr_15_1_0       d_lfsr;
37   unsigned int          d_count;
38
39  public:
40   gri_lfsr_32k () { reset (); }
41
42   void reset (){
43     d_lfsr.reset ();
44     d_count = 0;
45   }
46     
47   int next_bit (){
48     if (d_count == 32767){
49       d_count = 0;
50       return 0;
51     }
52     d_count++;
53     return d_lfsr.next_bit ();
54   }
55
56   int next_byte (){
57     int v = 0;
58     for (int i = 0; i < 8; i++){
59       v >>= 1;
60       if (next_bit ())
61         v |= 0x80;
62     }
63     return v;
64   }
65
66   int next_short (){
67     int v = 0;
68     for (int i = 0; i < 16; i++){
69       v >>= 1;
70       if (next_bit ())
71         v |= 0x8000;
72     }
73     return v;
74   }
75
76 };
77
78 #endif /* INCLUDED_GRI_LFSR_32k_H */