- added peak off hysteresis

git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@521 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-05-30 16:51:52 +00:00
parent a589d6477a
commit ee9f15f1a6
4 changed files with 20 additions and 12 deletions
+3 -2
View File
@@ -300,7 +300,8 @@ namespace jay {
float m_framerate;
float m_bandwidth;
float m_fcenter;
float m_peak_height_min;
float m_peak_thresh;
float m_peak_hysteresis;
int m_peak_width_min;
int m_peak_width_max;
float m_alpha_s;
@@ -322,7 +323,7 @@ namespace jay {
pmt::pmt_t m_msg_port_out;
public:
peak_detect_impl(int vlen, float framerate, float bandwidth, float fcenter, float peak_height_min, float peak_width_min, float peak_width_max, float alpha_s, float alpha_m);
peak_detect_impl(int vlen, float framerate, float bandwidth, float fcenter, float peak_thresh, float peak_hysteresis, float peak_width_min, float peak_width_max, float alpha_s, float alpha_m);
~peak_detect_impl();
// Where all the action really happens