Skip to content

gnuradio funcube dongle and funcube dongle pro+ source

License

Notifications You must be signed in to change notification settings

brotherbus/gr-fcdproplus

 
 

Repository files navigation

gr-fcdproplus is an linux and OSX addon for gnuradio to implement a funcube dongle and a funcube dongle pro+ source. On linux it autodetects the correct soundcard from /proc/asound/cards. This idea was taken from the osmosdr drivers.

To control the device the hidapi usb version is used.

  1. Dependencies:
  • gnuradio (>= 3.8 )
  • alsa usb drivers activated
  • hidapi-libusb

If the hidapi lib of your distro is installed then this hidapi version is used. Otherwise bundled code will be used. In case of MAC OSX this is hidmac.c otherwise hid.c ( This new MAC Version is untested, due to a lack of access to MAC OSX. So reports of success or bugs are welcome. )

  1. Installation:

get the latest code from https://github.com/dl1ksv/gr-fcdproplus

The build process is cmake based. So change to code directory. There

$mkdir build

$cd build

$cmake -DCMAKE_INSTALL_PREFIX=<where gnuradio is installed> ../

$make

$su

$make install

After that you'll find in grc in Custom - Fcd Funcube Dongle Funcube Dongle control Funcube Dongle Pro+ Funcube Dongle Pro+ control

  1. Important

Don't forget the udev rules: For instance:

Udev rules for the Funcube Dongle Pro (0xfb56) and Pro+ (0xfb31)

HIDAPI/libusb:

SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb56" MODE:="0666" SUBSYSTEMS=="usb" ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fb31" MODE:="0666"

HIDAPI/hidraw:

KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="fb56", MODE="0666" KERNEL=="hidraw*", ATTRS{busnum}=="1", ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="fb31", MODE="0666"

  1. Usage

Four modules are available:

  • fcd control
  • fcd
  • fcdpp_control
  • fcdproplus

The control modules only controls the dongles, while the other modules control the dongles and provide the IQ samples. All modules accept messages to control the frequency. That was the reason to introduce the control modules.

The fcd modules where introduced, as gnuradio 3.8 does not contain gr-fcd at the moment.

See the examples of a simple fm receiver in the examples directory or see a more complex example in in gr-display

  1. Credits

Some code is taken from qthid-4.1 by Alexandru Csete, OZ9AEC. The hid part is taken from http://github.com/signal11/hidapi

Thanks to Michael Dickens, who gave valuable hints for implementing message in hier2_blocks.

About

gnuradio funcube dongle and funcube dongle pro+ source

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 43.8%
  • C++ 37.2%
  • CMake 17.8%
  • Python 1.2%