Software to turn the RTL2832U into an SDR
 
 
 
 
 
Go to file
Joseph Poirier c7d970ac5b Merge pull request #45 from jpoirier/master
Add contrib info to the readme (#42)
2017-02-14 19:00:20 -06: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 Fixed missing stddef.h in rtl-sdr.h 2016-12-04 14:21:19 -02:00
m4
src rtl_fm: snprintf for older MSVC 2016-12-05 12:28:19 -08:00
win32-qtcreator minor fix 2016-08-30 00:24:00 +02: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 Fix check for NEED_PTHREADS_WORKARROUND 2016-12-08 10:02:56 -08: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 Add contrib info to the readme (#42) 2017-02-14 18:57:16 -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