~ubuntu-branches/ubuntu/trusty/gnuradio/trusty

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/general/gr_cpfsk_bc.h

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- c++ -*- */
 
2
/*
 
3
 * Copyright 2008 Free Software Foundation, Inc.
 
4
 * 
 
5
 * GNU Radio is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU General Public License as published by
 
7
 * the Free Software Foundation; either version 3, or (at your option)
 
8
 * any later version.
 
9
 * 
 
10
 * GNU Radio is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 * 
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with GNU Radio; see the file COPYING.  If not, write to
 
17
 * the Free Software Foundation, Inc., 51 Franklin Street,
 
18
 * Boston, MA 02110-1301, USA.
 
19
 */
 
20
#ifndef INCLUDED_GR_CPFSK_BC_H
 
21
#define INCLUDED_GR_CPFSK_BC_H
 
22
 
 
23
#include <gr_sync_interpolator.h>
 
24
 
 
25
class gr_cpfsk_bc;
 
26
 
 
27
typedef boost::shared_ptr<gr_cpfsk_bc> gr_cpfsk_bc_sptr;
 
28
 
 
29
gr_cpfsk_bc_sptr gr_make_cpfsk_bc(float k, float ampl, int samples_per_sym);
 
30
 
 
31
/*!
 
32
 * \brief Perform continuous phase 2-level frequency shift keying modulation 
 
33
 * on an input stream of unpacked bits.
 
34
 * \ingroup modulation_blk
 
35
 *
 
36
 * \param k                     modulation index
 
37
 * \param ampl                  output amplitude
 
38
 * \param samples_per_sym       number of output samples per input bit
 
39
 */
 
40
 
 
41
class gr_cpfsk_bc : public gr_sync_interpolator
 
42
{
 
43
private:
 
44
  friend gr_cpfsk_bc_sptr gr_make_cpfsk_bc(float k, float ampl, int samples_per_sym);
 
45
 
 
46
  gr_cpfsk_bc(float k, float ampl, int samples_per_sym);
 
47
 
 
48
  int   d_samples_per_sym;      // Samples per symbol, square pulse
 
49
  float d_freq;                 // Modulation index*pi/samples_per_sym
 
50
  float d_ampl;                 // Output amplitude
 
51
  float d_phase;                // Current phase
 
52
 
 
53
 public:
 
54
  ~gr_cpfsk_bc();
 
55
 
 
56
  void set_amplitude(float amplitude) { d_ampl = amplitude; }
 
57
 
 
58
  int work (int noutput_items,
 
59
            gr_vector_const_void_star &input_items,
 
60
            gr_vector_void_star &output_items);
 
61
};
 
62
 
 
63
#endif /* INCLUDED_GR_CPFSK_BC_H */