This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Radio block for interfacing with various radio hardware".
The branch, soapy_support has been updated
discards a311911a33760fcbedd7e6ae8471fac627d06efe (commit)
discards 69466a591d24bbd7c499703f802edf6daa8d1952 (commit)
discards c8af6b1735950a5feb268b44bc34b1ccd3c07392 (commit)
via 117f64885904f743d1f04c5ddbbd39aab5a56e6d (commit)
via b361fa5a7768864901821567bba0f89a18646b9e (commit)
via a9e536f45bae3c283a1ad7ed13ff17bbda6173ba (commit)
via 5ecfa255d299b9b4842ccd09a02892a853fcd5a7 (commit)
This update added new revisions after undoing existing revisions. That is
to say, the old revision is not a strict subset of the new revision. This
situation occurs when you --force push a change and generate a repository
containing something like this:
* -- * -- B -- O -- O -- O (a311911a33760fcbedd7e6ae8471fac627d06efe)
\
N -- N -- N (117f64885904f743d1f04c5ddbbd39aab5a56e6d)
When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cgit.osmocom.org/gr-osmosdr/commit/?id=117f64885904f743d1f04c5ddbbd3…
commit 117f64885904f743d1f04c5ddbbd39aab5a56e6d
Author: Josh Blum <josh(a)joshknows.com>
Date: Fri Apr 14 11:02:00 2017 -0500
soapy: support set/getFrequencyCorrection() API
backwards compatible changes with #ifdef
set/get_freq_corr() call directly into the SoapySDR
equivalent when supported by the API version.
http://cgit.osmocom.org/gr-osmosdr/commit/?id=b361fa5a7768864901821567bba0f…
commit b361fa5a7768864901821567bba0f89a18646b9e
Author: Josh Blum <josh(a)joshknows.com>
Date: Fri Apr 14 10:57:16 2017 -0500
soapy: support newer getSampleRateRange() API call
Switch to the newer API call which can provide a list of ranges.
There are feature detection ifdefs provided by the library
so that code will always correctly compile.
http://cgit.osmocom.org/gr-osmosdr/commit/?id=a9e536f45bae3c283a1ad7ed13ff1…
commit a9e536f45bae3c283a1ad7ed13ff17bbda6173ba
Author: Josh Blum <josh(a)joshknows.com>
Date: Sat Apr 1 19:45:51 2017 -0700
soapy - check for freq corr before invoking
set_freq_corr() is often a NOP for devices.
checking avoids crashes for some applications (ex GQRX)
-----------------------------------------------------------------------
Summary of changes:
AUTHORS | 1 +
CMakeLists.txt | 1 +
README | 1 +
cmake/Modules/FindLibFreeSRP.cmake | 27 +
grc/gen_osmosdr_blocks.py | 2 +
lib/CMakeLists.txt | 8 +
lib/config.h.in | 1 +
lib/device.cc | 8 +
lib/{redpitaya => freesrp}/CMakeLists.txt | 13 +-
lib/freesrp/freesrp_common.cc | 199 ++++++
lib/freesrp/freesrp_common.h | 29 +
lib/freesrp/freesrp_sink_c.cc | 280 ++++++++
lib/freesrp/freesrp_sink_c.h | 130 ++++
lib/freesrp/freesrp_source_c.cc | 341 ++++++++++
lib/freesrp/freesrp_source_c.h | 131 ++++
lib/freesrp/readerwriterqueue/LICENSE.md | 28 +
lib/freesrp/readerwriterqueue/README.md | 114 ++++
lib/freesrp/readerwriterqueue/atomicops.h | 577 ++++++++++++++++
lib/freesrp/readerwriterqueue/readerwriterqueue.h | 764 ++++++++++++++++++++++
lib/sink_impl.cc | 16 +
lib/source_impl.cc | 19 +
21 files changed, 2684 insertions(+), 6 deletions(-)
create mode 100644 cmake/Modules/FindLibFreeSRP.cmake
copy lib/{redpitaya => freesrp}/CMakeLists.txt (80%)
create mode 100644 lib/freesrp/freesrp_common.cc
create mode 100644 lib/freesrp/freesrp_common.h
create mode 100644 lib/freesrp/freesrp_sink_c.cc
create mode 100644 lib/freesrp/freesrp_sink_c.h
create mode 100644 lib/freesrp/freesrp_source_c.cc
create mode 100644 lib/freesrp/freesrp_source_c.h
create mode 100644 lib/freesrp/readerwriterqueue/LICENSE.md
create mode 100644 lib/freesrp/readerwriterqueue/README.md
create mode 100644 lib/freesrp/readerwriterqueue/atomicops.h
create mode 100644 lib/freesrp/readerwriterqueue/readerwriterqueue.h
hooks/post-receive
--
GNU Radio block for interfacing with various radio hardware