Re: Problem migrating an OOT module that uses FFT from 3.8 to 3.9

2022-01-30 Thread Ralf Gorholt
Hello Ron, thank you very much. I have walked right into the trap a second time :-( I should attach a Post-It to my monitor screen to remind me that I might need to adapt the CMakeLists.txt files when I change something... Long story short, it works now :-) Regards, Ralf Am 29.01.2022 um 23:

Re: Problem migrating an OOT module that uses FFT from 3.8 to 3.9

2022-01-29 Thread Ron Economos
Ralf, I'm not sure if you've done this already, but when you use d_fft_calculator, you need to change from -> to . to access it. Ron On 1/29/22 12:24, Ralf Gorholt wrote: Hello all, I am currently trying to migrate an OOT module that uses an FFT object internally from  GNU Radio version 3.8

Problem migrating an OOT module that uses FFT from 3.8 to 3.9

2022-01-29 Thread Ralf Gorholt
Hello all, I am currently trying to migrate an OOT module that uses an FFT object internally from  GNU Radio version 3.8 to 3.9. In my .h file I have got this:     //old: gr::fft::fft_complex d_fft_calculator;     gr::fft::fft_complex_fwd d_fft_calculator; and in the constructor member initial