blob: 5dc10f405df11a78b79e4aa6dadfa3463f4ea692 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* -*- c++ -*- */
/*
* Copyright 2020 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_DIGITAL_EQUALIZER_H
#define INCLUDED_DIGITAL_EQUALIZER_H
// Equalizer States:
// IDLE -- just FIR filtering using the current taps
// TRAINING -- calculating adaptive taps based on training sequence
// DD -- calculating adaptive taps based on expected constellation points (in algorithm
// object)
enum class equalizer_state_t { IDLE, TRAINING, DD };
// TODO: Put a common class for LinearEq/DFE here
#endif
|