I can see there has been an update to the gnuradio-osmosdr backend
since the version I packaged and it does indeed look like something
that would cause a version string error.
I will update the package and let you know here when they are ready to
be upgraded.
alc@atlantis:~/sdr/pybombs/pybombs.git/src/gr-osmosdr$ git show 46bb1ad
commit 46bb1ad1a08b44f9c06dd2bf099731aa3bc0e995
Author: Dimitri Stolnikov <
hor...@gmx.net>
Date: Tue Dec 16 00:14:35 2014 +0100
airspy: increase version string size to 128
diff --git a/lib/airspy/airspy_source_c.cc b/lib/airspy/airspy_source_c.cc
index bc33fed..395b812 100644
--- a/lib/airspy/airspy_source_c.cc
+++ b/lib/airspy/airspy_source_c.cc
@@ -100,7 +100,7 @@ airspy_source_c::airspy_source_c (const std::string &args)
ret = airspy_board_id_read( _dev, &board_id );
AIRSPY_THROW_ON_ERROR(ret, "Failed to get AirSpy board id")
- char version[40];
+ char version[128];
memset(version, 0, sizeof(version));
ret = airspy_version_string_read( _dev, version, sizeof(version));
AIRSPY_THROW_ON_ERROR(ret, "Failed to read version string")