Add several functions#21
Open
tejeez wants to merge 5 commits into
Open
Conversation
At least one distributor of rtl-sdr dongles (rtl-sdr.com) added a bias-t to their dongles which could be toggled via GPIO P0 of the RTL2832U chip. source: http://www.rtl-sdr.com/rtl-sdr-blog-v-3-dongles-user-guide/ Signed-off-by: Steve Markgraf <steve@steve-m.de>
* added debug output when activating
Signed-off-by: hayati ayguen <h_ayguen@web.de>
* fixed options argument
Signed-off-by: Fabian P. Schmidt <kerel-fs@gmx.de>
Signed-off-by: Steve Markgraf <steve@steve-m.de>
Conflicts:
src/rtl_fm.c
src/rtl_power.c
Both trough hold and bias tee used option -T in rtl_power.
As trough hold is probably less used, it was changed to -M ("minimum").
The equivalent rtlsdr_set_if_bandwidth was removed from rtl-sdr.h because it was not actually implemented. Also added documentation for some functions.
xloem
pushed a commit
to xloem/rtl-sdr
that referenced
this pull request
Oct 3, 2018
* So @f4exb was right to include the rtl_tcp.h in CMakeLists install. If anyone is making a C program that communicates with rtl_tcp, it will probably use the enums. (See PR keenerd#22 and issue keenerd#21) * Added rtl_tcp.h to CMakeLists install script and moved rtl_tcp.h include to rtl_tcp.c file * Added Eclipse gitignore (for anyone that uses eclipse to compile) * Closes Issue keenerd#21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added some functions which some software tried to use but failed to compile because they were missing from this fork. This improves compatibility with existing software.
For example, gr-osmosdr could not be compiled anymore because the bias tee functions were missing.
I also noticed that "rtlsdr_set_if_bandwidth" was specified in rtl-sdr.h but not actually implemented. Other forks made the function called "rtlsdr_set_tuner_bandwidth" with a somewhat different implementation, so adding it with the same name here allows other software to also use our implementation of bandwidth adjustment.