mirror of https://github.com/drowe67/librtlsdr.git
* added vendor/manufacturer id 0x1209 and product id 0x2832, see http://pid.codes/howto/ idea is to use modified rtl-dongle for SDR - without having to blacklist dvb_usb_rtl28xxu, that another unmodified device could be used with dvb * added options -M and -P to rtl_eeprom for modification of USB IDs Signed-off-by: hayati ayguen <h_ayguen@web.de> |
||
---|---|---|
cmake | ||
contrib | ||
debian | ||
include | ||
m4 | ||
src | ||
win32-qtcreator | ||
.gitignore | ||
.travis.yml | ||
AUTHORS | ||
CMakeLists.txt | ||
COPYING | ||
Doxyfile.in | ||
Makefile.am | ||
README.md | ||
README.rtlfm_cmdfile | ||
README.rtlsdr_rpc | ||
configure.ac | ||
git-version-gen | ||
librtlsdr.pc.in | ||
rtl-sdr.rules |
README.md
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