GNU Radio's GSM Package
burst_fnr_filter_impl.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/* @file
3 * @author (C) 2015 by Roman Khassraf <rkhassraf@gmail.com>
4 * @section LICENSE
5 *
6 * Gr-gsm is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3, or (at your option)
9 * any later version.
10 *
11 * Gr-gsm is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with gr-gsm; see the file COPYING. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street,
19 * Boston, MA 02110-1301, USA.
20 *
21 */
22
23#ifndef INCLUDED_GSM_BURST_FNR_FILTER_IMPL_H
24#define INCLUDED_GSM_BURST_FNR_FILTER_IMPL_H
25
27
28#define GSM_SUPERFRAME (26 * 51)
29#define GSM_HYPERFRAME (2048 * GSM_SUPERFRAME)
30
31namespace gr {
32 namespace gsm {
33
35 {
36 private:
37 filter_policy d_filter_policy;
38 unsigned int d_framenr;
39 filter_mode d_mode;
40 public:
41 burst_fnr_filter_impl(filter_mode mode, unsigned int fnr);
43 void process_burst(pmt::pmt_t msg);
44
45 /* External API */
46 unsigned int get_fn(void);
47 unsigned int set_fn(unsigned int fn);
48
51
52 /* Filtering policy */
55 };
56
57 } // namespace gsm
58} // namespace gr
59
60#endif /* INCLUDED_GSM_BURST_FNR_FILTER_IMPL_H */
61
Definition: burst_fnr_filter_impl.h:35
filter_policy set_policy(filter_policy policy)
void process_burst(pmt::pmt_t msg)
filter_mode set_mode(filter_mode mode)
unsigned int set_fn(unsigned int fn)
burst_fnr_filter_impl(filter_mode mode, unsigned int fnr)
filter_policy get_policy(void)
<+description of block+>
Definition: burst_fnr_filter.h:46
filter_policy
Definition: common.h:29
filter_mode
Definition: burst_fnr_filter.h:35
Definition: constants.h:29