Re: Adding a set_sensitivity() function to VCO_C block

2021-02-12 Thread Achilleas Anastasopoulos
So editing the vco_c.h file : ... static sptr make(double sampling_rate, double sensitivity, double amplitude); //! Sets the sensitivity. virtual void set_sensitivity(double sensitivity) =0; did the job! thanks again, Achilleas

Re: Adding a set_sensitivity() function to VCO_C block

2021-02-12 Thread Jeff Long
You didn't mention editing gr-blocks/include/gnuradio/blocks/vco_c.h. On Fri, Feb 12, 2021 at 9:39 AM Achilleas Anastasopoulos wrote: > Hi all, > > I am working with GNURADIO 3.7 and realized that the VCO blocks do not > have functionality to change the sensitivity parameter during operation. >

Adding a set_sensitivity() function to VCO_C block

2021-02-12 Thread Achilleas Anastasopoulos
Hi all, I am working with GNURADIO 3.7 and realized that the VCO blocks do not have functionality to change the sensitivity parameter during operation. I wanted to use them for generating FSK signals. I realized I can do that equivalently with the Frequency Mod block, so this is fine. However I