Re: GNU Radio 3.9 OOT derived class

2021-04-23 Thread Alvaro Pendas Recondo
Indeed, that was the error. Now everything works fine. Thank you very much for your help. Regards, Álvaro El vie, 23 abr 2021 a las 10:27, Vasil Velichkov () escribió: > Hi Alvaro, > > On 23/04/2021 02.43, Alvaro Pendas Recondo wrote: > > The source code is available here https://github.com/ap

Re: GNU Radio 3.9 OOT derived class

2021-04-23 Thread Vasil Velichkov
Hi Alvaro, On 23/04/2021 02.43, Alvaro Pendas Recondo wrote: > The source code is available here https://github.com/apruhd/gr-TFMv3 You have two find_package(Gnuradio "3.9" ...) in your CMakeLists.txt - lines 77 and 177 https://github.com/apruhd/gr-TFMv3/blob/master/CMakeLists.txt#L77 https://g

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Jeff Long
I'd suggest starting over with modtool. There are a number of directories in your code that should not be there (e.g., gnuradio-runtime, gr-fec, gr-fft, gr-blocks, ...). Something went wrong in the process of getting all this set up. On Thu, Apr 22, 2021 at 7:45 PM Alvaro Pendas Recondo wrote: >

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Alvaro Pendas Recondo
I've tried with no result. The full output is -- The CXX compiler identification is GNU 9.3.0 -- The C compiler identification is GNU 9.3.0 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX c

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Vasil Velichkov
Hi Alvaro, On 22/04/2021 19.02, Alvaro Pendas Recondo wrote: > Thank you for your answer. Should not be Gnuradio "3.9" instead of "3.9"?. Yes, use the version you are developing for. > Anyway, I tried with both options and I got the same error: > > Target "TFMv3_python" links to target "gnuradi

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Alvaro Pendas Recondo
Hi Vasil, Thank you for your answer. Should not be Gnuradio "3.9" instead of "3.9"?. Anyway, I tried with both options and I got the same error: Target "TFMv3_python" links to target "gnuradio::gnuradio-digital" but the target was not found. Perhaps a find_package() call is missing for an IM

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Vasil Velichkov
Hi Alvaro, On 22/04/2021 17.48, Alvaro Pendas Recondo wrote: > 6. Add the line set(GR_REQUIRED_COMPONENTS RUNTIME DIGITAL) at > gr-TFMv3/CMakeLists.txt The GR_REQUIRED_COMPONENTS is no longer used in GNU Radio 3.8 and 3.9. You need to add "digital" in the Gnuradio's find_package list and then li

GNU Radio 3.9 OOT derived class

2021-04-22 Thread Alvaro Pendas Recondo
Hello, I am trying to implement my own header class derived from 'header_format_default' named 'header_format_counter_dif'. As you can imagine, the class is quite similar to 'header_format_counter' with some minor adjustments. My situation is almost identical to the one presented in this mailing l