Hello various Osmocom mailing lists,
the official Osmocom binary packages will not be built anymore for the
following distributions starting at 2024-02:
* Raspberry Pi OS 64-bit (use Debian_12 etc. instead)
* Ubuntu 23.04 (Ubuntu 23.10 and LTS 20.04/22.04 feeds are available)
* openSUSE 15.4 (openSUSE Tumbleweed feed is available)
* Debian Testing (Debian Unstable and 12-10 feeds are available)
For Raspberry Pi OS 64-bit users, make sure to adjust your
/etc/apt/sources.list.d as described here to switch to a Debian
aarch64 feed:
https://osmocom.org/projects/cellular-infrastructure/wiki/Latest_Builds
See the new linux distributions article for information on how long we
plan to keep building packages for each distribution:
https://osmocom.org/projects/cellular-infrastructure/wiki/Linux_distributio…
Let me know if you have questions.
Best regards,
Oliver
--
- Oliver Smith <osmith(a)sysmocom.de> https://www.sysmocom.de/
=======================================================================
* sysmocom - systems for mobile communications GmbH
* Alt-Moabit 93
* 10559 Berlin, Germany
* Sitz / Registered office: Berlin, HRB 134158 B
* Geschaeftsfuehrer / Managing Director: Harald Welte
Hello,
Is there any chance the following patch could be reviewed and/or merged
into upstream gr-osmosdr? It allow multiple Airspy devices to be used
(which is sadly not possible without the patch). The patch is already used
in the downstream gr-osmosdr package in Fedora for last two years and seems
to work without issues.
https://osmocom.org/issues/5144#note-4
Thanks!
Regards,
Daniel
Hello,
Please, consider doing a new tag/release of rtl-sdr. The last tagged
version is from 2018 and there were many changes since then including the
recently added RTL-SDR V4 dongle support.
Thanks!
Regards,
Daniel
After seeing the osmo-fl2k[1] project, I've bought a USB VGA dongle,
hoping it would contain a FL2000.
The model I've bought looks identical (from the outside) to the black
one on the picture. Unfortunately it contains a different chip: a
Macrosilicon MS9120.
There is not a lot of information about this chip, the manufacturer does
not even publish a datasheet (I've sent them an email to ask for one,
but don't have high hopes).
What I've found so far is:
- someone's reverse-engineering attempt of the android driver[2]
- a bit of python code to read & write the chip's memory[3]
The second thing is for a different chip by the same manufacturer, but
it seems to work with my device as well.
So, I was wondering if anyone here has already attempted to re-purpose
this chip as a transmitter :)
cheers,
- niklas
[1] https://osmocom.org/projects/osmo-fl2k/wiki
[2] https://github.com/animaone/macrosilicon_reverse_engineering_journey/
[3] https://github.com/hwti/ms210x-tools
gr-osmosdr: New release
Hello,
Please, consider doing a new tag/release of gr-osmosdr. The last tagged
version is from 2022 and there were multiple changes since then including
the recently added RTL-SDR V4 dongle support.
Thanks!
Regards,
Daniel
In future blog v4 production batches (out in several months time), it
will be possible to turn off the upconverter when tuned outside of the
HF bands. Please add the code to control the GPIOs to turn off the
upconverter when it is not in use.
diff --git a/src/tuner_r82xx.c b/src/tuner_r82xx.c
index 1510fc3..38d4802 100644
--- a/src/tuner_r82xx.c
+++ b/src/tuner_r82xx.c
@@ -1151,6 +1151,12 @@ int r82xx_set_freq(struct r82xx_priv *priv,
uint32_t freq)
cable_2_in = (band == HF) ? 0x08 : 0x00;
rc = r82xx_write_reg_mask(priv, 0x06, cable_2_in, 0x08);
+ if (rc < 0)
+ goto err;
+
+ /* Control upconverter GPIO switch on newer batches */
+ rc = rtlsdr_set_bias_tee_gpio(priv->rtl_dev, 5, !cable_2_in);
+
if (rc < 0)
goto err;
Regards,
Carl
Just realized my patch attachments are getting scrubbed by the list.
Hopefully this plain text paste works.
diff --git a/lib/rtl/rtl_source_c.cc b/lib/rtl/rtl_source_c.cc
index 5e3306b..644bf7a 100644
--- a/lib/rtl/rtl_source_c.cc
+++ b/lib/rtl/rtl_source_c.cc
@@ -455,6 +455,8 @@ double rtl_source_c::get_sample_rate()
osmosdr::freq_range_t rtl_source_c::get_freq_range( size_t chan )
{
osmosdr::freq_range_t range;
+ char manufact[256];
+ char product[256];
if (_dev) {
if (_no_tuner) {
@@ -464,6 +466,8 @@ osmosdr::freq_range_t
rtl_source_c::get_freq_range( size_t chan )
return range;
}
+ rtlsdr_get_usb_strings( _dev, manufact, product, NULL );
+
enum rtlsdr_tuner tuner = rtlsdr_get_tuner_type(_dev);
if ( tuner == RTLSDR_TUNER_E4000 ) {
@@ -478,6 +482,8 @@ osmosdr::freq_range_t
rtl_source_c::get_freq_range( size_t chan )
range += osmosdr::range_t( 438e6, 924e6 );
} else if ( tuner == RTLSDR_TUNER_R820T ) {
range += osmosdr::range_t( 24e6, 1766e6 );
+ } else if ( tuner == RTLSDR_TUNER_R828D && strcmp(manufact,
"RTLSDRBlog") == 0 && strcmp(product, "Blog V4") == 0 ) {
+ range += osmosdr::range_t( 0e6, 1766e6 );
} else if ( tuner == RTLSDR_TUNER_R828D ) {
range += osmosdr::range_t( 24e6, 1766e6 );
}
Regards,
Carl
On Thu, Aug 31, 2023 at 12:06 AM <osmocom-sdr-request(a)lists.osmocom.org> wrote:
>
> Send osmocom-sdr mailing list submissions to
> osmocom-sdr(a)lists.osmocom.org
>
> To subscribe or unsubscribe via email, send a message with subject or
> body 'help' to
> osmocom-sdr-request(a)lists.osmocom.org
>
> You can reach the person managing the list at
> osmocom-sdr-owner(a)lists.osmocom.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of osmocom-sdr digest..."
>
> Today's Topics:
>
> 1. [PATCH] Adjust gr-osmosdr lower tuning limit for the RTL-SDR Blog V4
> (Carl Laufer)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Wed, 30 Aug 2023 23:55:57 +1200
> From: Carl Laufer <admin(a)rtl-sdr.com>
> Subject: [PATCH] Adjust gr-osmosdr lower tuning limit for the RTL-SDR
> Blog V4
> To: osmocom-sdr(a)lists.osmocom.org
> Message-ID:
> <CAP8SZq0i9JGFpBgvgHLfBeoTUoec0+XGoVh3Vr=_GQYqiJeL6Q(a)mail.gmail.com>
> Content-Type: multipart/mixed; boundary="00000000000077e36a0604229e75"
>
> Patch to detect the RTL-SDR Blog V4 in gr-osmosdr, and set the lower limit
> to 0 MHz.
>
> Regards,
> Carl
>