ThomasHabets / radiostuff

My collection of gnuradio stuff
BSD 3-Clause "New" or "Revised" License
20 stars 8 forks source link

Missing Block at broadband_scan.grc #3

Closed cloudlakecho closed 2 years ago

cloudlakecho commented 2 years ago

I try to run "broadband_scan.grc" and it looks like one block is missing. The block ID is the habets39_sweepsinkv_0. Where could I find the block in your repository? Or should I compile the sweepsinkv_impl.cc code at the "gr-habets38/lib/" and connected to the block?

Here is the screenshot of my GNURadio error window (red block is the missing one): broadband_scan error

Runtime environment:
   OS: Ubuntu 18.04    GNURadio: 3.8.2.0    USRP model: X300

Thanks.

ThomasHabets commented 2 years ago

Sorry for the delay on this. A health thing took me out of effective commission for a few weeks.

For the flowgraph to work yes you need to build the modules from this repo. Hopefully should be as simple as:

cd habets38
mkdir build
cd build
cmake ..
make
sudo make install

Depending on how you have gnuradio installed, that should make my blocks appear in gnuradio-companion.

cloudlakecho commented 2 years ago

@ThomasHabets Oh, I hope that you are fully recovered. Thanks for the information of the prerequisite. My task was in a my company project, and the project was actually diverted to a different direction meanwhile. I will close this issue with your answer.