blob: 8bf8d3ba140bf3588f3b6339ff64e510a1baaac1 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* -*- c++ -*- */
/*
* Copyright 2006,2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_ANALOG_SQUELCH_BASE_CC_H
#define INCLUDED_ANALOG_SQUELCH_BASE_CC_H
#include <gnuradio/analog/api.h>
#include <gnuradio/block.h>
namespace gr {
namespace analog {
/*!
* \brief basic squelch block; to be subclassed for other squelches.
* \ingroup level_blk
*/
class ANALOG_API squelch_base_cc : virtual public block
{
protected:
virtual void update_state(const gr_complex& sample) = 0;
virtual bool mute() const = 0;
public:
squelch_base_cc(){};
virtual int ramp() const = 0;
virtual void set_ramp(int ramp) = 0;
virtual bool gate() const = 0;
virtual void set_gate(bool gate) = 0;
virtual bool unmuted() const = 0;
virtual std::vector<float> squelch_range() const = 0;
};
} /* namespace analog */
} /* namespace gr */
#endif /* INCLUDED_ANALOG_SQUELCH_BASE_CC_H */
|