blob: 80124f73a9a337f71d63b2cca53be1e8863f6449 [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>
ptrkrysik42411c62015-07-08 10:50:41 +020031#include <vector>
piotr437f5462014-02-04 17:57:25 +010032
33namespace gr {
34 namespace gsm {
35
36 /*!
37 * \brief <+description of block+>
38 * \ingroup gsm
39 *
40 */
piotrc7c249a2014-05-02 17:24:08 +020041 class GSM_API receiver : virtual public sync_block
piotr437f5462014-02-04 17:57:25 +010042 {
43 public:
44 typedef boost::shared_ptr<receiver> sptr;
45
46 /*!
47 * \brief Return a shared_ptr to a new instance of gsm::receiver.
48 *
49 * To avoid accidental use of raw pointers, gsm::receiver's
50 * constructor is in a private implementation
51 * class. gsm::receiver::make is the public interface for
52 * creating new instances.
53 */
ptrkrysik7a7b9b02014-11-19 11:27:34 +010054 static sptr make(int osr, const std::vector<int> &cell_allocation, const std::vector<int> &seq_nums);
piotrf2b6a1b2014-08-04 11:28:59 +020055
ptrkrysik7a7b9b02014-11-19 11:27:34 +010056 virtual void set_cell_allocation(const std::vector<int> &cell_allocation) = 0;
ptrkrysike518bbf2014-11-06 14:50:59 +010057 virtual void set_tseq_nums(const std::vector<int> & tseq_nums) = 0;
piotrf2b6a1b2014-08-04 11:28:59 +020058 virtual void reset() = 0;
piotr437f5462014-02-04 17:57:25 +010059 };
Piotr K66bb3cd2014-08-13 19:04:57 +020060
piotr437f5462014-02-04 17:57:25 +010061 } // namespace gsm
62} // namespace gr
63
64#endif /* INCLUDED_GSM_RECEIVER_H */
Piotr K66bb3cd2014-08-13 19:04:57 +020065