[Peak Detector]

- added callbacks for dynamic parameter change

git-svn-id: http://moon:8086/svn/software/trunk/projects/GnuRadio@535 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
2019-06-01 09:38:51 +00:00
parent 560e8f95ec
commit a4626e99fc
4 changed files with 68 additions and 3 deletions
+7
View File
@@ -47,6 +47,13 @@ namespace gr {
* creating new instances.
*/
static sptr make(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);
virtual void set_bandwidth(float bandwidth_Hz) = 0;
virtual void set_centerFrequency(float freq_Hz) = 0;
virtual void set_peakThresh(float thresh_dB) = 0;
virtual void set_peakHysteresis(float hysteresis_dB) = 0;
virtual void set_peakWidthMin(float width_Hz) = 0;
virtual void set_peakWidthMax(float width_Hz) = 0;
};
} // namespace jay