blob: e5774e9d43044865cc1531ed20478599b4c1ea95 [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001/* -*- c++ -*- */
ptrkrysik529895b2014-12-02 18:07:38 +01002/*
3 * @file
4 * @author Piotr Krysik <ptrkrysik@gmail.com>
5 * @section LICENSE
6 *
7 * Gr-gsm is free software; you can redistribute it and/or modify
piotr437f5462014-02-04 17:57:25 +01008 * 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.
ptrkrysik529895b2014-12-02 18:07:38 +010011 *
12 * Gr-gsm is distributed in the hope that it will be useful,
piotr437f5462014-02-04 17:57:25 +010013 * 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.
ptrkrysik529895b2014-12-02 18:07:38 +010016 *
piotr437f5462014-02-04 17:57:25 +010017 * You should have received a copy of the GNU General Public License
ptrkrysik529895b2014-12-02 18:07:38 +010018 * along with gr-gsm; see the file COPYING. If not, write to
piotr437f5462014-02-04 17:57:25 +010019 * the Free Software Foundation, Inc., 51 Franklin Street,
20 * Boston, MA 02110-1301, USA.
21 */
22
23
24#ifndef INCLUDED_GSM_RECEIVER_H
25#define INCLUDED_GSM_RECEIVER_H
26
ptrkrysik3be74a72014-12-13 10:11:00 +010027#include <grgsm/api.h>
piotr437f5462014-02-04 17:57:25 +010028#include <gnuradio/block.h>
29#include <gnuradio/feval.h>
piotrc7c249a2014-05-02 17:24:08 +020030#include <gnuradio/sync_block.h>
piotr437f5462014-02-04 17:57:25 +010031
32namespace gr {
33 namespace gsm {
34
35 /*!
36 * \brief <+description of block+>
37 * \ingroup gsm
38 *
39 */
piotrc7c249a2014-05-02 17:24:08 +020040 class GSM_API receiver : virtual public sync_block
piotr437f5462014-02-04 17:57:25 +010041 {
42 public:
43 typedef boost::shared_ptr<receiver> sptr;
44
45 /*!
46 * \brief Return a shared_ptr to a new instance of gsm::receiver.
47 *
48 * To avoid accidental use of raw pointers, gsm::receiver's
49 * constructor is in a private implementation
50 * class. gsm::receiver::make is the public interface for
51 * creating new instances.
52 */
ptrkrysik7a7b9b02014-11-19 11:27:34 +010053 static sptr make(int osr, const std::vector<int> &cell_allocation, const std::vector<int> &seq_nums);
piotrf2b6a1b2014-08-04 11:28:59 +020054
ptrkrysik7a7b9b02014-11-19 11:27:34 +010055 virtual void set_cell_allocation(const std::vector<int> &cell_allocation) = 0;
ptrkrysike518bbf2014-11-06 14:50:59 +010056 virtual void set_tseq_nums(const std::vector<int> & tseq_nums) = 0;
piotrf2b6a1b2014-08-04 11:28:59 +020057 virtual void reset() = 0;
piotr437f5462014-02-04 17:57:25 +010058 };
Piotr K66bb3cd2014-08-13 19:04:57 +020059
piotr437f5462014-02-04 17:57:25 +010060 } // namespace gsm
61} // namespace gr
62
63#endif /* INCLUDED_GSM_RECEIVER_H */
Piotr K66bb3cd2014-08-13 19:04:57 +020064