Imported Upstream version 3.2.2
[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 3, 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  * \ingroup misc
31  *
32  * This is based on gri_lfsr_15_1_0 with an extra 0 added at the end
33  * of the sequence.
34  */
35
36 class gri_lfsr_32k {
37   gri_lfsr_15_1_0       d_lfsr;
38   unsigned int          d_count;
39
40  public:
41   gri_lfsr_32k () { reset (); }
42
43   void reset (){
44     d_lfsr.reset ();
45     d_count = 0;
46   }
47     
48   int next_bit (){
49     if (d_count == 32767){
50       d_count = 0;
51       return 0;
52     }
53     d_count++;
54     return d_lfsr.next_bit ();
55   }
56
57   int next_byte (){
58     int v = 0;
59     for (int i = 0; i < 8; i++){
60       v >>= 1;
61       if (next_bit ())
62         v |= 0x80;
63     }
64     return v;
65   }
66
67   int next_short (){
68     int v = 0;
69     for (int i = 0; i < 16; i++){
70       v >>= 1;
71       if (next_bit ())
72         v |= 0x8000;
73     }
74     return v;
75   }
76
77 };
78
79 #endif /* INCLUDED_GRI_LFSR_32k_H */