blob: 6c306bfa94318a03e440c5798c13d685d1abd988 [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
Vadim Yanitskiycdd0c992019-01-19 16:52:20 +070032#include <grgsm/gsm_constants.h>
33
piotr437f5462014-02-04 17:57:25 +010034namespace gr {
35 namespace gsm {
36
37 /*!
38 * \brief <+description of block+>
39 * \ingroup gsm
40 *
41 */
Piotr Krysikaf8ad5d2016-05-29 13:05:48 +020042 class GRGSM_API receiver : virtual public sync_block
piotr437f5462014-02-04 17:57:25 +010043 {
44 public:
45 typedef boost::shared_ptr<receiver> sptr;
46
47 /*!
48 * \brief Return a shared_ptr to a new instance of gsm::receiver.
49 *
50 * To avoid accidental use of raw pointers, gsm::receiver's
51 * constructor is in a private implementation
52 * class. gsm::receiver::make is the public interface for
53 * creating new instances.
54 */
Piotr Krysikbac82842016-05-15 10:39:39 +020055 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 +020056
ptrkrysik7a7b9b02014-11-19 11:27:34 +010057 virtual void set_cell_allocation(const std::vector<int> &cell_allocation) = 0;
ptrkrysike518bbf2014-11-06 14:50:59 +010058 virtual void set_tseq_nums(const std::vector<int> & tseq_nums) = 0;
piotrf2b6a1b2014-08-04 11:28:59 +020059 virtual void reset() = 0;
Vadim Yanitskiycdd0c992019-01-19 16:52:20 +070060
61 /* Reset multiframe configuration for all timeslots */
62 virtual void reset_mf_config(void) = 0;
63 /* Get multiframe type for a given timeslot */
64 virtual multiframe_type get_mf_type(int tn) = 0;
65 /* Set multiframe type for a given timeslot */
66 virtual void set_mf_type(int tn, multiframe_type type) = 0;
67 /* Get burst type for a given pair of timeslot and frame number */
68 virtual burst_type get_mf_burst_type(int tn, unsigned fn) = 0;
69 /* Set burst type for a given pair of timeslot and frame number */
70 virtual void set_mf_burst_type(int tn, unsigned fn, burst_type type) = 0;
71 /* Set burst type for every frame number within a given modulo */
72 virtual void set_mf_burst_type_mod(int tn, int mod, unsigned fn, burst_type type) = 0;
piotr437f5462014-02-04 17:57:25 +010073 };
Piotr K66bb3cd2014-08-13 19:04:57 +020074
piotr437f5462014-02-04 17:57:25 +010075 } // namespace gsm
76} // namespace gr
77
78#endif /* INCLUDED_GSM_RECEIVER_H */
Piotr K66bb3cd2014-08-13 19:04:57 +020079