1

I've just install the last release of RedHawk(1.10.2) on Ubuntu 14.04 64 bit, following RedHawk Manual. When I opened the Eclipse IDE, there is no component available, as instead occured on previous RedHawk for CentOS version.

Where can I find the component??Which packet can I download? How can I build them?

I also would like to work on USRP and I've already installed UHD. Where can I find an installer for using this device on RedHawk?

Thanks in advance for the help

Biga
  • 37
  • 6

2 Answers2

1

The Ubuntu source install of REDHAWK installs the framework, bulkioInterfaces, GPP, CodeGen, frontendInterfaces, and BurstIO. Other than the GPP, no components or devices are installed by default.

As jayemar mentioned, all of the components and devices that come packaged for CentOS are available as source on the REDHAWK github page. For example a few of these include devices like the USRP and RTL, soft packages / libraries like dsp and fftlib, and components such as PSD, TuneFilterDecimate, DataConverter and SigGen.

Building and installing these components and devices from source can be done with the build script located in each repository or by going into the source folder (cpp/python/java) and issuing the "./reconf; ./configure; make; make install" commands.

Youssef Bagoulla
  • 1,229
  • 1
  • 7
  • 16
0

Components are installed to ${SDRROOT}/dom/components. SDRROOT is set to /var/redhawk/sdr by default. Any components installed there should show up in the IDE.

There are a lot of devices and components, including a USRP_UHD device, available on the RedhawkSDR Github repos: https://github.com/RedhawkSDR

jayemar
  • 332
  • 2
  • 8