blob: dbbe327c9dd7eb60e33d6e880171f99b8cf4b111 [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001/* -*- c++ -*- */
ptrkrysik529895b2014-12-02 18:07:38 +01002/*
3 * @file
Piotr Krysika6268a52017-08-23 16:02:19 +02004 * @author (C) 2014-2016 by Piotr Krysik <ptrkrysik@gmail.com>
ptrkrysik529895b2014-12-02 18:07:38 +01005 * @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>
piotrc7c249a2014-05-02 17:24:08 +020029#include <gnuradio/sync_block.h>
ptrkrysik42411c62015-07-08 10:50:41 +020030#include <vector>
piotr437f5462014-02-04 17:57:25 +010031
32namespace gr {
33 namespace gsm {
34
35 /*!
36 * \brief <+description of block+>
37 * \ingroup gsm
38 *
39 */
Piotr Krysikaf8ad5d2016-05-29 13:05:48 +020040 class GRGSM_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 */
Piotr Krysikbac82842016-05-15 10:39:39 +020053 static sptr make(int osr, const std::vector<int> &cell_allocation, const std::vector<int> &seq_nums, bool process_uplink=false);
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