gr-osmosdr.git branch soapy_support updated. v0.1.4-49-gb3d915f

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-commitlog@lists.osmocom.org/.

gitosis at osmocom.org gitosis at osmocom.org
Sun Dec 6 23:42:58 UTC 2015


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
       via  b3d915f5917174c7e7e57dceda3dd35e254a96de (commit)
       via  86ad584204762eeb01f07daa683673f1ec3f1df5 (commit)
       via  43a00ae785ba5e9703b28e079b2ba78f7021ebb0 (commit)
       via  ac1d8ec02def12a31168a1d06683c027cecdfe0e (commit)
       via  46e95395e09f952654da30bf575790ad1f7736e1 (commit)
       via  f33f30815a7b9494315d4782245447ebca21c02e (commit)
       via  2bcd86e55e92711f4d14d0acd25b79691f9b9520 (commit)
       via  dd6690b6ca7b2cf735867a55a2e92ef1f0c01639 (commit)
       via  254e1b1981bbe920b03c1a8e50b67509739231f3 (commit)
       via  e847176f3ee43434eef7f6cfa1128983801f45c7 (commit)
       via  dd6536757a3a2ce115491f12d730a592fbc07999 (commit)
       via  485b02e6152d8abb6d61c9b16fe53c8a253ca4dd (commit)
       via  592a814bdb023cf471e4ff9ead13c8e11712360e (commit)
       via  8e6ecd0644519c96d8d9c1a606cf4b8c39bcf2a6 (commit)
       via  69181b0e858c109d1471d4a1c9a2c87f732e8df6 (commit)
       via  5dca65674565b6e44bf2e790430d5bb7370f2327 (commit)
       via  d4387f436dd3555c7c590273916df6798cc9dd1f (commit)
       via  9595b044b659f6ba2ee38e48cc3721b562726912 (commit)
       via  b3fdf5b83dc79575405f524df889d92908fecc72 (commit)
       via  594391982845b4ac0e4e48bbb91b4b85552f2af6 (commit)
       via  44c223cb5d473a760877e8c8b2d58e2638173192 (commit)
       via  4582df6111c50042e0b8ae93c6cf04b795d9d233 (commit)
       via  275e6aed19b9ba8563bffd318a227a1196e1da2c (commit)
       via  b226b85fa82f94dfc3d57d1083ea1fd6b4c62d13 (commit)
       via  8d25584da32840387b4c04768b9d6afeed83109d (commit)
       via  3916b5bc4f9ed504106cf0845e6daa077a84764c (commit)
       via  3793a5e8b1b97cb78e21c807d21bca2a406f97d3 (commit)
       via  17c9497d4da855a81a6f871b4b4ce457ec465336 (commit)
       via  be9af0fe6f81bce327f9b1a2cd23a09533725d9b (commit)
       via  79b53f50e42ecafa0cf2026f0274ecd1996e846c (commit)
       via  afed5df615de4ca15f2b8201b48cdc06236d7cab (commit)
       via  3532d60c11529c8aeca58219bb06f2c2acf8e547 (commit)
       via  c092f9e2a3cea524ff02e7cad333069ca3dcd290 (commit)
      from  61184a19e7db7a9579908fa512617327998b00d5 (commit)

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=b3d915f5917174c7e7e57dceda3dd35e254a96de

commit b3d915f5917174c7e7e57dceda3dd35e254a96de
Author: Josh Blum <josh at joshknows.com>
Date:   Sun Dec 6 15:19:26 2015 -0800

    soapy: do not throw when IQ bal mode is set to off
    
    The automatic IQ balance mode is not supported,
    but we should not throw when it is set to disabled.
    Setting to disabled is techinically allowable,
    and currently throwing is disruptive for users.

-----------------------------------------------------------------------

Summary of changes:
 AUTHORS                              |   2 +
 CMakeLists.txt                       |  15 +-
 MANIFEST.md                          |  33 ++
 README                               |   1 +
 cmake/Modules/FindLibHackRF.cmake    |   1 +
 cmake/Modules/FindLibSDRplay.cmake   |  27 ++
 grc/gen_osmosdr_blocks.py            |   3 +-
 lib/CMakeLists.txt                   |  10 +
 lib/airspy/airspy_source_c.cc        |  53 ++-
 lib/airspy/airspy_source_c.h         |   1 +
 lib/arg_helpers.h                    |   1 +
 lib/bladerf/bladerf_common.cc        |  87 ++++-
 lib/bladerf/bladerf_common.h         |   8 +
 lib/bladerf/bladerf_sink_c.cc        | 152 ++++++++-
 lib/bladerf/bladerf_sink_c.h         |   8 +
 lib/bladerf/bladerf_source_c.cc      |  10 +-
 lib/config.h.in                      |   1 +
 lib/device.cc                        |   8 +
 lib/hackrf/CMakeLists.txt            |   9 +
 lib/hackrf/hackrf_sink_c.cc          |  72 ++++-
 lib/hackrf/hackrf_source_c.cc        |  93 +++++-
 lib/{file => sdrplay}/CMakeLists.txt |  12 +-
 lib/sdrplay/sdrplay_source_c.cc      | 603 +++++++++++++++++++++++++++++++++++
 lib/sdrplay/sdrplay_source_c.h       | 136 ++++++++
 lib/soapy/soapy_source_c.cc          |   1 +
 lib/source_impl.cc                   |  18 ++
 lib/time_spec.cc                     |   1 +
 27 files changed, 1293 insertions(+), 73 deletions(-)
 create mode 100644 MANIFEST.md
 create mode 100644 cmake/Modules/FindLibSDRplay.cmake
 copy lib/{file => sdrplay}/CMakeLists.txt (83%)
 create mode 100644 lib/sdrplay/sdrplay_source_c.cc
 create mode 100644 lib/sdrplay/sdrplay_source_c.h


hooks/post-receive
-- 
GNU Radio block for interfacing with various radio hardware



More information about the osmocom-commitlog mailing list