System Requirements for High Bandwidth SDRs Based on Your Experience

2022-10-18 Thread Mutlu Aydın
Hello, I am searching for a computer/workstation that will work with high bandwidth SDRs. Do you recommend computer/workstation systems for working with SDRs that are capable of 200MHz, 400 Mhz, 800 MHz and 1600 Mhz etc instantaneous bandwidth based on your experience? What are important specs (R

Re: Problems with gr-modtool on Ubuntu 20.04 (gnuradio 3.10.4)

2022-10-18 Thread Cinaed Simson
The warnings are for the developers. It's clear cmake is working. In the output of the trace there are 2-3 non-existent paths which appear to be related to the absolute path.   "$HOME/gr-customModule/include/gnuradio/customModule" If the absolute path gets clipped to "/include/gnuradio/custo

Re: Problems with gr-modtool on Ubuntu 20.04 (gnuradio 3.10.4)

2022-10-18 Thread Cinaed Simson
Try this   cd $HOME/gr-customModule   rm -fr build   mkdir build   cd build   cmake --debug-output .. >& build.log The first couple of lines should have entries which look something like:   /usr/share/cmake-3.18/Modules Also, if you cd $HOME/gr-customModule/build   grep ROOT CMakeCache.txt t

RE: Problems with gr-modtool on Ubuntu 20.04 (gnuradio 3.10.4)

2022-10-18 Thread Michael Matthews
Hey Ryan, I went ahead and ran that cmake trace and it did produce something interesting. I seems that two cmake policies are not set and both have the behavior to not throw warnings by default. The offending policies are: - CMP0060 - CMP0082 CMP0060 is defined by the cmake documentation

Re: Problems with gr-modtool on Ubuntu 20.04 (gnuradio 3.10.4)

2022-10-18 Thread Ryan Volz
Hi Michael, On 10/3/22 1:21 AM, Michael Matthews wrote: ... -- Found Boost: /lib/x86_64-linux-gnu/cmake/Boost-1.71.0/BoostConfig.cmake (found suitable version "1.71.0", minimum required is "1.71.0") found components: date_time program_options system regex thread unit_test_framework The ab