GNU Radio Manual and C++ API Reference  3.7.13.4
The Free & Open Software Radio Ecosystem
timing_error_detector_type.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright (C) 2017 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * 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.
11  *
12  * GNU Radio is distributed in the hope that it will be useful,
13  * 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.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this file; see the file COPYING. If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef INCLUDED_DIGITAL_TIMING_ERROR_DETECTOR_TYPE_H
24 #define INCLUDED_DIGITAL_TIMING_ERROR_DETECTOR_TYPE_H
25 
26 namespace gr {
27  namespace digital {
28 
29  // Timing Error Detector types.
30  enum ted_type {
31  TED_NONE = -1,
32  TED_MUELLER_AND_MULLER = 0, // Decision directed
33  TED_MOD_MUELLER_AND_MULLER = 1, // Decision directed
34  TED_ZERO_CROSSING = 2, // Decision directed
37  TED_DANDREA_AND_MENGALI_GEN_MSK = 6, // Operates on the CPM signal
38  TED_SIGNAL_TIMES_SLOPE_ML = 7, // ML approx. for small signal
39  TED_SIGNUM_TIMES_SLOPE_ML = 8, // ML approx. for large signal
40  TED_MENGALI_AND_DANDREA_GMSK = 9, // Operates on the CPM signal
41  };
42 
43  } /* namespace digital */
44 } /* namespace gr */
45 
46 #endif /* INCLUDED_DIGITAL_TIMING_ERROR_DETECTOR_TYPE_H */
Definition: timing_error_detector_type.h:34
Definition: timing_error_detector_type.h:33
Definition: timing_error_detector_type.h:35
Definition: timing_error_detector_type.h:32
Include this header to use the message passing features.
Definition: basic_block.h:45
Definition: timing_error_detector_type.h:37
Definition: timing_error_detector_type.h:40
Definition: timing_error_detector_type.h:39
ted_type
Definition: timing_error_detector_type.h:30
Definition: timing_error_detector_type.h:38
Definition: timing_error_detector_type.h:31
Definition: timing_error_detector_type.h:36