Software to turn the RTL2832U into an SDR
 
 
 
 
 
Go to file
hayati ayguen ea168c1d6d changed default of option RTL_FULL_STATIC_BUILD to ON
This only affects the extra CMakeLists.txt below win32-qtcreator.
  This compiles fully static - without librtlsdr.dll.

Root CMakeLists.txt, with option RTL_STATIC_BUILD ON,
  does compile librtlsdr.dll and the rtl_* tools require it.

Signed-off-by: hayati ayguen <h_ayguen@web.de>
2017-02-15 21:20:49 +01:00
cmake lib/cmake: check for libusb_handle_events_timeout_completed() 2014-01-24 03:57:53 +01:00
debian Added ARM Hard Float Debianize 2016-12-21 01:24:19 -02:00
include UDP need to manually terminate the data transmission 2016-12-21 01:25:06 -02:00
m4
src bugfix compiler error on windows for rtl_udp 2017-02-15 20:42:58 +01:00
win32-qtcreator changed default of option RTL_FULL_STATIC_BUILD to ON 2017-02-15 21:20:49 +01:00
.gitignore Moved include rtl_tcp.h from rtl-sdr.h to rtl_tcp.c (where it should be) 2016-11-27 22:22:25 -02:00
.travis.yml add configuration file for Travis CI 2014-02-05 18:07:15 +01:00
AUTHORS update authors 2012-12-16 16:25:40 +01:00
CMakeLists.txt added OPTION RTL_STATIC_BUILD for MinGW/Win32, default: ON 2017-02-15 21:11:17 +01:00
COPYING
Doxyfile.in
Makefile.am don't install udev rules by default, as it may pollute the system 2012-09-08 16:37:56 +02:00
README.md fixes issue #39 2017-02-14 19:02:44 -06:00
README.rtlfm_cmdfile updated README.rtlfm_cmdfile: added keywords adcmax and adcrms 2016-11-27 22:22:25 -02:00
README.rtlsdr_rpc add uninstall note to README.rtlsdr_rpc 2015-08-17 23:09:54 +02:00
configure.ac cflags: add -Wdeclaration-after-statement 2014-01-24 17:45:55 +01:00
git-version-gen
librtlsdr.pc.in install pkg-config file when building with cmake 2012-05-12 12:34:21 +02:00
rtl-sdr.rules lib: add new HanfTek dongle 2016-11-27 12:19:44 +01:00

README.md

librtlsdr version Build Status GPLv2 License

Description

rtl-sdr turns your Realtek RTL2832 based DVB dongle into a SDR receiver

For more information see:

http://sdr.osmocom.org/trac/wiki/Rtl-sdr

Contributing

Pull requests are always welcome but please make changes to, and pull request from, the development branch.

Initial setup:

  • fork the main librtlsdr repo via github
  • clone your fork locally and cd to the cloned repo's folder
  • add the upstream development repo:
    • git remote add upstream git@github.com:librtlsdr/librtlsdr.git
  • track the development branch:
    • git branch --track development origin/development

Normal workflow:

  • checkout the development branch and make your changes
  • commit your changes
  • sync your local development branch with the upstream development branch:
    • git fetch upstream
    • git merge upstream/development
  • push your commit/s to your forked repo
  • do a pull request via github