gnuRadio 3.8
Can anyone tell me how can i install gnuradio 3.8 on Ubuntu 18.0.4 LTS? I have tried these two instructions but i have the same result my laptop crashes 1) - sudo apt update - sudo apt upgrade - sudo ldconfig - sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 - sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2 - - sudo update-alternatives --set python /usr/bin/python3.6 - sudo apt install python3-pip - pip3 install --upgrade setuptools - pip3 install click - - sudo apt install git cmake g++ libboost-all-dev libgmp-dev swig python3-numpy python3-mako python3-sphinx python3-lxml doxygen libfftw3-dev libcomedi-dev libsdl1.2-dev libgsl-dev libqwt-qt5-dev libqt5opengl5-dev python3-pyqt5 liblog4cpp5-dev libzmq3-dev python3-yaml python3-click python3-click-plugins python3-zmq - sudo ldconfig sudo apt install python3-scipy libgsm1-dev libcodec2-dev liborc-0.4-dev libgmp3-dev portaudio19-dev - - git clone --recursive -b maint-3.8 --single-branch https://github.com/gnuradio/gnuradio.git - cd gnuradio/ - mkdir build - cd build - cmake ../ make -j4 ( right here computer chashes at 87% three times straight) - make test - sudo make install - sudo ldconfig gnuradio-companion 2) sudo apt-get install python-pip python-apt sudo -H pip install PyBOMBS mkdir ~/sdrcd ~/sdr pybombs auto-config pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git pybombs prefix init ~/sdr sed -i 's/2\.6/3.6/g' setup_env.sh sed -i 's/2\.7/3/g' setup_env.sh source ~/sdr/setup_env.sh pybombs install uhd sudo apt install git cmake g++ libboost-all-dev libgmp-dev \ swig python3-numpy python3-mako python3-sphinx python3-lxml \ doxygen libfftw3-dev libcomedi-dev libsdl1.2-dev libgsl-dev \ libqwt-qt5-dev libqt5opengl5-dev python3-pyqt5 liblog4cpp5-dev \ libzmq3-dev python3-yaml python3-click python3-click-plugins pybombs install gnuradio (crashes at 87% at Buiding stage) I have no idea what i am doing. I installed gnuradio 3.7.# by sudo apt-get update sudo apt-get install gnuradio I want the 3.8 version. Thanks
Re: gr-iqbal->gr-osmosdr->gqrx missing pkgconfig files break gr-3.8 builds
> In gqrx build I am now hitting a fail to find gnuradio from this line in > CMakeLists.txt: > > find_package(gnuradio REQUIRED COMPONENTS analog audio blocks digital > filter fft) Are you sure you're using the latest gqrx code ?!? Here I have : find_package(Gnuradio REQUIRED COMPONENTS analog audio blocks digital filter fft) With upper case 'G'. and my gnuradio 3.8 install has GnuradioConfig.cmake installed. Cheers, Sylvain
Re: gnuRadio 3.8
Hi Sarandis, In the first version of your attempt, I’ve also seen this problem It is caused by your laptop running out of memory during the make -j 4 step. It can probably be fixed by running make instead. The -j 4 command causes 4 simultaneous threads to run, using up all the memory. It will take hours to “make” however. Best regards Glen > On Feb 5, 2020, at 7:32 AM, sarandis. Doulgeris > wrote: > > Can anyone tell me how can i install gnuradio 3.8 on Ubuntu 18.0.4 LTS? I > have tried these two instructions but i have the same result my laptop crashes > 1) > • sudo apt update > > • sudo apt upgrade > > • sudo ldconfig > > • sudo update-alternatives --install /usr/bin/python python > /usr/bin/python2.7 1 > > • sudo update-alternatives --install /usr/bin/python python > /usr/bin/python3.6 2 > > • sudo update-alternatives --set python /usr/bin/python3.6 > • sudo apt install python3-pip > • pip3 install --upgrade setuptools > • pip3 install click > • sudo apt install git cmake g++ libboost-all-dev libgmp-dev swig > python3-numpy python3-mako python3-sphinx python3-lxml doxygen libfftw3-dev > libcomedi-dev libsdl1.2-dev libgsl-dev libqwt-qt5-dev libqt5opengl5-dev > python3-pyqt5 liblog4cpp5-dev libzmq3-dev python3-yaml python3-click > python3-click-plugins python3-zmq > > • sudo ldconfig > > sudo apt install python3-scipy libgsm1-dev libcodec2-dev liborc-0.4-dev > libgmp3-dev portaudio19-dev > • git clone --recursive -b maint-3.8 --single-branch > https://github.com/gnuradio/gnuradio.git > > • cd gnuradio/ > > • mkdir build > > • cd build > > • cmake ../ > > make -j4 ( right here computer chashes at 87% three times straight) > • make test > • sudo make install > > • sudo ldconfig > > gnuradio-companion > > > 2) > sudo apt-get install python-pip python-apt > sudo -H pip install PyBOMBS > mkdir > ~ > /sdr > > cd ~ > /sdr > pybombs auto-config > pybombs recipes add gr-recipes git+ > https://github.com/gnuradio/gr-recipes.git > > pybombs recipes add gr-etcetera git+ > https://github.com/gnuradio/gr-etcetera.git > > pybombs prefix init > ~/sdr > sed -i 's/2\.6/3.6/g' > setup_env.sh > sed -i > 's/2\.7/3/g' setup_env.sh > source ~ > /sdr/setup_env.sh > pybombs install uhd > sudo apt install git cmake g++ libboost-all-dev libgmp-dev \ > swig python3-numpy python3-mako python3-sphinx python3-lxml \ > doxygen libfftw3-dev libcomedi-dev libsdl1.2-dev libgsl-dev \ > libqwt-qt5-dev libqt5opengl5-dev python3-pyqt5 liblog4cpp5-dev \ > libzmq3-dev python3-yaml python3-click python3-click-plugins > > pybombs install gnuradio (crashes at 87% at Buiding stage) > > > I have no idea what i am doing. I installed gnuradio 3.7.# by > sudo apt-get update > sudo apt-get install gnuradio > > I want the 3.8 version. Thanks
Re: gnuRadio 3.8
Hi find the number of CPUs in your system with command: cat /proc/cpuinfo | grep processor | wc -l don't use all available CPU when using make -j (example make -j3 if you have 4 CPUs) Regards, Christophe On 05/02/2020 14:38, Glen Langston wrote: Hi Sarandis, In the first version of your attempt, I’ve also seen this problem It is caused by your laptop running out of memory during the make -j 4 step. It can probably be fixed by running make instead. The -j 4 command causes 4 simultaneous threads to run, using up all the memory. It will take hours to “make” however. Best regards Glen On Feb 5, 2020, at 7:32 AM, sarandis. Doulgeris wrote: Can anyone tell me how can i install gnuradio 3.8 on Ubuntu 18.0.4 LTS? I have tried these two instructions but i have the same result my laptop crashes 1) • sudo apt update • sudo apt upgrade • sudo ldconfig • sudo update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 • sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2 • sudo update-alternatives --set python /usr/bin/python3.6 • sudo apt install python3-pip • pip3 install --upgrade setuptools • pip3 install click • sudo apt install git cmake g++ libboost-all-dev libgmp-dev swig python3-numpy python3-mako python3-sphinx python3-lxml doxygen libfftw3-dev libcomedi-dev libsdl1.2-dev libgsl-dev libqwt-qt5-dev libqt5opengl5-dev python3-pyqt5 liblog4cpp5-dev libzmq3-dev python3-yaml python3-click python3-click-plugins python3-zmq • sudo ldconfig sudo apt install python3-scipy libgsm1-dev libcodec2-dev liborc-0.4-dev libgmp3-dev portaudio19-dev • git clone --recursive -b maint-3.8 --single-branch https://github.com/gnuradio/gnuradio.git • cd gnuradio/ • mkdir build • cd build • cmake ../ make -j4 ( right here computer chashes at 87% three times straight) • make test • sudo make install • sudo ldconfig gnuradio-companion 2) sudo apt-get install python-pip python-apt sudo -H pip install PyBOMBS mkdir ~ /sdr cd ~ /sdr pybombs auto-config pybombs recipes add gr-recipes git+ https://github.com/gnuradio/gr-recipes.git pybombs recipes add gr-etcetera git+ https://github.com/gnuradio/gr-etcetera.git pybombs prefix init ~/sdr sed -i 's/2\.6/3.6/g' setup_env.sh sed -i 's/2\.7/3/g' setup_env.sh source ~ /sdr/setup_env.sh pybombs install uhd sudo apt install git cmake g++ libboost-all-dev libgmp-dev \ swig python3-numpy python3-mako python3-sphinx python3-lxml \ doxygen libfftw3-dev libcomedi-dev libsdl1.2-dev libgsl-dev \ libqwt-qt5-dev libqt5opengl5-dev python3-pyqt5 liblog4cpp5-dev \ libzmq3-dev python3-yaml python3-click python3-click-plugins pybombs install gnuradio (crashes at 87% at Buiding stage) I have no idea what i am doing. I installed gnuradio 3.7.# by sudo apt-get update sudo apt-get install gnuradio I want the 3.8 version. Thanks
Re: gnuRadio 3.8
Stop pub Le mer. 5 févr. 2020 à 16:19, Christophe Seguinot < christophe.segui...@orange.fr> a écrit : > Hi > > find the number of CPUs in your system with command: > > cat /proc/cpuinfo | grep processor | wc -l > > don't use all available CPU when using make -j (example make -j3 if you > have 4 CPUs) > > Regards, Christophe > > > On 05/02/2020 14:38, Glen Langston wrote: > > Hi Sarandis, > > > > In the first version of your attempt, I’ve also seen this problem > > > > It is caused by your laptop running out of memory during the > > > > make -j 4 > > > > step. It can probably be fixed by running > > > > make > > > > instead. The -j 4 command causes 4 simultaneous threads to run, using > up > > all the memory. > > > > It will take hours to “make” however. > > > > Best regards > > > > Glen > > > > > >> On Feb 5, 2020, at 7:32 AM, sarandis. Doulgeris < > sarandis.doulge...@gmail.com> wrote: > >> > >> Can anyone tell me how can i install gnuradio 3.8 on Ubuntu 18.0.4 LTS? > I have tried these two instructions but i have the same result my laptop > crashes > >> 1) > >> • sudo apt update > >> > >> • sudo apt upgrade > >> > >> • sudo ldconfig > >> > >> • sudo update-alternatives --install /usr/bin/python python > /usr/bin/python2.7 1 > >> > >> • sudo update-alternatives --install /usr/bin/python python > /usr/bin/python3.6 2 > >> > >> • sudo update-alternatives --set python /usr/bin/python3.6 > >> • sudo apt install python3-pip > >> • pip3 install --upgrade setuptools > >> • pip3 install click > >> • sudo apt install git cmake g++ libboost-all-dev libgmp-dev swig > python3-numpy python3-mako python3-sphinx python3-lxml doxygen libfftw3-dev > libcomedi-dev libsdl1.2-dev libgsl-dev libqwt-qt5-dev libqt5opengl5-dev > python3-pyqt5 liblog4cpp5-dev libzmq3-dev python3-yaml python3-click > python3-click-plugins python3-zmq > >> > >> • sudo ldconfig > >> > >> sudo apt install python3-scipy libgsm1-dev libcodec2-dev liborc-0.4-dev > libgmp3-dev portaudio19-dev > >> • git clone --recursive -b maint-3.8 --single-branch > https://github.com/gnuradio/gnuradio.git > >> > >> • cd gnuradio/ > >> > >> • mkdir build > >> > >> • cd build > >> > >> • cmake ../ > >> > >> make -j4 ( right here computer chashes at 87% three times straight) > >> • make test > >> • sudo make install > >> > >> • sudo ldconfig > >> > >> gnuradio-companion > >> > >> > >> 2) > >> sudo apt-get install python-pip python-apt > >> sudo -H pip install PyBOMBS > >> mkdir > >> ~ > >> /sdr > >> > >> cd ~ > >> /sdr > >> pybombs auto-config > >> pybombs recipes add gr-recipes git+ > >> https://github.com/gnuradio/gr-recipes.git > >> > >> pybombs recipes add gr-etcetera git+ > >> https://github.com/gnuradio/gr-etcetera.git > >> > >> pybombs prefix init > >> ~/sdr > >> sed -i 's/2\.6/3.6/g' > >> setup_env.sh > >> sed -i > >> 's/2\.7/3/g' setup_env.sh > >> source ~ > >> /sdr/setup_env.sh > >> pybombs install uhd > >> sudo apt install git cmake g++ libboost-all-dev libgmp-dev \ > >>swig python3-numpy python3-mako python3-sphinx python3-lxml \ > >>doxygen libfftw3-dev libcomedi-dev libsdl1.2-dev libgsl-dev \ > >>libqwt-qt5-dev libqt5opengl5-dev python3-pyqt5 liblog4cpp5-dev \ > >>libzmq3-dev python3-yaml python3-click python3-click-plugins > >> > >> pybombs install gnuradio (crashes at 87% at Buiding stage) > >> > >> > >> I have no idea what i am doing. I installed gnuradio 3.7.# by > >> sudo apt-get update > >> sudo apt-get install gnuradio > >> > >> I want the 3.8 version. Thanks > > > >
clear buffers of stuck chain
hi, i am using a gnuradio zigbee chain , and sending alot of packets. after a certain point, it stops sending packets(or does very slowly). can i somehow increase the buffer(message loop) or force it to clear the message loop? thanks -- The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete all copies of the message.
Important request, participation in software development study
Dear Engineers, When I write this message, I think I am writing to the best software developers in the world, or to those who are in the process of being one. I write to ask you a favor. I am a UMA PhD student and I study the use of formal and non-formal models in the software industry. According to 9 investigations, UML is not being used as it should, but the developers use their own models, designed by them or by their companies. However, these investigations have not included professionals like you, so I want to ask you to help me by answering this survey: If you have a Google account: https://docs.google.com/forms/d/e/1FAIpQLSdG4bhNWfU3vzSKwG-0j8NuGW47_xmSY1ftF33gaNAZsU25kA/viewform Reply without logging in: https://docs.google.com/forms/d/e/1FAIpQLSeNm99cxIyT65-5qR6ZCZoDNeFONTf_ODWbXaSxUskkxbWu4g/viewform I also ask you to send this survey to other developers that you know and respect. Please help me, I promise that your contributions will be recognized in the publications that are possible, therefore, as an optional field I have included the name and email. My biggest goal is to unify all non-formal models to create a modeling language that is the heritage of the industry, built by all of us. If you want to know more, you can write to me at ivan.arr...@uma.es, ivandarioarr...@gmail.com or arco...@gmail.com !!THANKS
Re: gr-iqbal->gr-osmosdr->gqrx missing pkgconfig files break gr-3.8 builds
On 05/02/2020 13:04, Sylvain Munaut wrote: In gqrx build I am now hitting a fail to find gnuradio from this line in CMakeLists.txt: find_package(gnuradio REQUIRED COMPONENTS analog audio blocks digital filter fft) Are you sure you're using the latest gqrx code ?!? > Here I have : find_package(Gnuradio REQUIRED COMPONENTS analog audio blocks digital filter fft) With upper case 'G'. Yes - sorry I had patched that to lower case as a test but only after testing and hitting this issue - it was late :\ This is the actual error unpatched: Could not find a package configuration file provided by "Gnuradio" with any of the following names: GnuradioConfig.cmake gnuradio-config.cmake and my gnuradio 3.8 install has GnuradioConfig.cmake installed. OK fixed that. Because we don't have a gnuradio-devel package I put the gnuradio cmake files in gnuradio-utils instead - was not important at the time as they were not used. That error goes away with gnuradio-utils added to BRs. Cheers, Sylvain So getting a little further but now we have: - -- Detecting CXX compiler ABI info - done -- Detecting CXX compile features -- Detecting CXX compile features - done fatal: not a git repository (or any of the parent directories): .git -- Found PkgConfig: /usr/bin/pkg-config (found version "1.6.3") -- Checking for module 'gnuradio-osmosdr' -- Package 'gnuradio-osmosdr', required by 'virtual:world', not found -- Found GNURADIO_OSMOSDR: /lib64/libgnuradio-osmosdr.so -- Found LOG4CPP: /usr/lib64/liblog4cpp.so -- Checking for module 'gmp' -- Found gmp, version 6.2.0 -- Could NOT find GMP (missing: GMPXX_LIBRARY GMP_INCLUDE_DIR) -- Checking for module 'mpir >= 3.0' -- Package 'mpir', required by 'virtual:world', not found -- Could NOT find MPIR (missing: MPIRXX_LIBRARY MPIR_LIBRARY MPIR_INCLUDE_DIR) CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:146 (message): Could NOT find MPLIB (missing: MPLIBXX_LIBRARY MPLIB_LIBRARY MPLIB_INCLUDE_DIR) Call Stack (most recent call first): /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:393 (_FPHSA_FAILURE_MESSAGE) /usr/lib64/cmake/gnuradio/FindMPLIB.cmake:26 (find_package_handle_standard_args) /usr/share/cmake/Modules/CMakeFindDependencyMacro.cmake:47 (find_package) /usr/lib64/cmake/gnuradio/GnuradioConfig.cmake:26 (find_dependency) CMakeLists.txt:114 (find_package) -- Configuring incomplete, errors occurred! See also "/home/baz/rpmbuild/BUILD/gqrx-master/build/CMakeFiles/CMakeOutput.log". error: Bad exit status from /home/baz/rpmbuild/tmp/rpm-tmp.j5O1Dd (%build) -- We do have these installed in the build chroot: BuildRequires: gmp-devel BuildRequires: gmpxx-devel BuildRequires: mpir-devel BuildRequires: mpirxx-devel But I don't understand: -- Found gmp, version 6.2.0 -- Could NOT find GMP Cheers, Barry
Re: gnuRadio 3.8
Here is a recently updated and tested procedure for installing from source: https://wiki.gnuradio.org/index.php/InstallingGR#From_Source Please let me know if you encounter problems with it. Barry Duggan
Re: gr-iqbal->gr-osmosdr->gqrx missing pkgconfig files break gr-3.8 builds
> -- Checking for module 'gmp' > -- Found gmp, version 6.2.0 > -- Could NOT find GMP (missing: GMPXX_LIBRARY GMP_INCLUDE_DIR) Looks like mageia has split the c++ gmp bindings into libgmpxx-devel make sure you have that installed. > We do have these installed in the build chroot: > BuildRequires: gmp-devel > BuildRequires: gmpxx-devel > BuildRequires: mpir-devel > BuildRequires: mpirxx-devel > > But I don't understand: > -- Found gmp, version 6.2.0 > -- Could NOT find GMP Shouldn't that be libgmp-devel & libgmpxx-devel ? The "Found gmp, version 6.2.0" means he found a pkg-config file. Then after, using the data from the .pc file it tries to find gmpxx.h and libgmpxx.so and libgmp.so. It can find the last one, but not the two first ( see the "missing GMPXX_LIBRARY GMP_INCLUDE_DIR" ). Cheers, Sylvain
Re: gr-iqbal->gr-osmosdr->gqrx missing pkgconfig files break gr-3.8 builds
On 05/02/2020 18:13, Sylvain Munaut wrote: -- Checking for module 'gmp' -- Found gmp, version 6.2.0 -- Could NOT find GMP (missing: GMPXX_LIBRARY GMP_INCLUDE_DIR) Looks like mageia has split the c++ gmp bindings into libgmpxx-devel make sure you have that installed. We do have these installed in the build chroot: BuildRequires: gmp-devel BuildRequires: gmpxx-devel BuildRequires: mpir-devel BuildRequires: mpirxx-devel But I don't understand: -- Found gmp, version 6.2.0 -- Could NOT find GMP Shouldn't that be libgmp-devel & libgmpxx-devel ? No that would only be for i586, gmpxx-devel is a virtual provide that is arch agnostic. We always try to use pkgconfig(gmpxx) in preference rather than any other in .spec files if they are available, which is why I was so upset when you dropped the .pc's from these packages. The "Found gmp, version 6.2.0" means he found a pkg-config file. Then after, using the data from the .pc file it tries to find gmpxx.h and libgmpxx.so and libgmp.so. It can find the last one, but not the two first ( see the "missing GMPXX_LIBRARY GMP_INCLUDE_DIR" ). I just found my mistake, I had edited the wrong version of the .spec /o\ and thanks to your comment I double checked. The gmp* -devels were missing from the requires. gqrx is now building against gnuradio-3.8 (with .pc files) and gr-iqbal and gr-osmosdr without. Thanks again for your help explanations. Will the 3.8 updates be merged and released soon? Cheers, Sylvain Cheers, Barry
Link not found for USRP FPGA manual
Hi community, I want to learn about programming the USRP2 FPGA. The link about the FPGA manual doesn't work http://files.ettus.com/manual/md_fpga.html Any help of where to find such manual? THanks! Laura. -- *Laura Arjona * Washington Research Foundation Innovation Postdoctoral Fellow in Neuroengineering *Paul G. Allen School of Computer Science & Engineering* 185 E Stevens Way NE University of Washington Seattle, WA 98195-2350
Re: Link not found for USRP FPGA manual
Hi Laura, Thanks for pointing this out. We will get that link fixed in the manual. I think it is just an issue with the recent generation of the manual, since we just merged the FPGA repo into UHD. files.ettus.com/manual/ is built from the current master branch of UHD. You can see the manual for the latest stable version of UHD (3.15.0.0) here: https://files.ettus.com/manual_archive/v3.15.0.0/html/ Regards, Nate Temple On Wed, Feb 5, 2020 at 11:19 AM Laura Arjona wrote: > Hi community, > > I want to learn about programming the USRP2 FPGA. > > The link about the FPGA manual doesn't work > http://files.ettus.com/manual/md_fpga.html > > Any help of where to find such manual? > > THanks! > > Laura. > -- > *Laura Arjona * > Washington Research Foundation Innovation Postdoctoral Fellow in > Neuroengineering > > *Paul G. Allen School of Computer Science & Engineering* > 185 E Stevens Way NE > University of Washington > Seattle, WA 98195-2350 >
Re: Link not found for USRP FPGA manual
Hi Laura, I believe such questions are better suited for the usrp-users mailing list, because working on the USRP2 FPGA has little to do with GNU Radio itself! You're right, that link is dead in the UHD 4.0.0.0 documentation, but you're probably not using UHD 4 anyway: Your installation method for UHD probably came with the same documentation, but for specifically the version you're using (maybe in a separate package, it depends), and that would contain the FPGA manual. Generally, I honestly wouldn't dive into programming FPGAs unless there is a very very good reason you *must* use the FPGA – that's digital hardware design, and that's a whole league of complexity and new paradigms that can take months to basically come to terms with. Best regards, Marcus On Wed, 2020-02-05 at 11:15 -0800, Laura Arjona wrote: > Hi community, > > I want to learn about programming the USRP2 FPGA. > > The link about the FPGA manual doesn't work > http://files.ettus.com/manual/md_fpga.html > > Any help of where to find such manual? > > THanks! > > Laura. > -- > Laura Arjona > Washington Research Foundation Innovation Postdoctoral Fellow in > Neuroengineering > > Paul G. Allen School of Computer Science & Engineering > 185 E Stevens Way NE > University of Washington > Seattle, WA 98195-2350 smime.p7s Description: S/MIME cryptographic signature
Finding GNU Radio 3.8 Compatible Versions Of OOT Modules
Dear GNURadioers, I was at FOSDEM 2020 and enjoyed the talks. I am new to GNU Radio and I have ported a couple of OOT modules to GNU Radio 3.8. I found the porting tool very helpful but there are usually some additional Python 3 and cmake changes that are needed too. What is the best way to share this work? I could see some 3.8-related pull requests for projects on Github - is there an official system to find 3.8-compatible versions of OOT modules? Many thanks,
Re: Finding GNU Radio 3.8 Compatible Versions Of OOT Modules
Generally, the place to start looking for GNU Radio module is cgran.org. Our fantastic volunteers (hey, Nicolas and Marc and others!) have just last week added a new column: supported GNU Radio versions. Sadly that column isn't overly well-populated so far – we expect that to change soon; it's a rather easy field in the Manifest of such OOTs. Best regards, Marcus On Thu, 2020-02-06 at 01:39 +, Luke Stutters wrote: > Dear GNURadioers, > > I was at FOSDEM 2020 and enjoyed the talks. > > I am new to GNU Radio and I have ported a couple of OOT modules to > GNU Radio 3.8. I found the porting tool very helpful but there are > usually some additional Python 3 and cmake changes that are needed > too. > > What is the best way to share this work? I could see some 3.8-related > pull requests for projects on Github - is there an official system to > find 3.8-compatible versions of OOT modules? > > Many thanks, smime.p7s Description: S/MIME cryptographic signature