Software to turn the RTL2832U into an SDR
 
 
 
 
 
Go to file
hayati ayguen e30dbd52b6 amend usage, that option '-d' also accepts serial
Signed-off-by: hayati ayguen <h_ayguen@web.de>
2018-10-29 23:12:49 +01:00
cmake
contrib add contrib/jenkins.sh for build testing 2018-04-18 23:59:17 +02:00
debian debian: update version to match librtlsdr 2018-10-03 20:34:27 +00:00
include Merge commit '9573e68' from 'osmocom/master' 2018-10-03 20:32:19 +00:00
m4
src amend usage, that option '-d' also accepts serial 2018-10-29 23:12:49 +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
AUTHORS
CMakeLists.txt Merge commit '9573e68' from 'osmocom/master' 2018-10-03 20:32:19 +00:00
COPYING
Doxyfile.in
Makefile.am Fix "make uninstall" for documentation 2018-06-03 13:24:42 +02:00
README.md Merge commit '9573e68' from 'osmocom/master' 2018-10-03 20:32:19 +00:00
README.rtlfm_cmdfile updated README.rtlfm_cmdfile: added keywords adcmax and adcrms 2016-11-27 22:22:25 -02:00
README.rtlsdr_rpc
configure.ac configure.ac: Add --enable-sanitize and --enable-werror 2018-04-18 23:59:17 +02:00
git-version-gen
librtlsdr.pc.in
rtl-sdr.rules

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:

https://osmocom.org/projects/rtl-sdr/wiki

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