View on GitHub

TLeconte.github.io

Playing with the Airspy R820T IF bandwidth

Introduction

The airspy SDR consists essentially in a R820T tuner followed by a 12bits DAC, with an ARM SOC to control all that and send data via USB.

In contrary to classical DVB-T RTL-SDR, the airspy don’t output an IQ stream natively. The DAC samples the IF output of the RT820 tuner at 5Ms/s or 20Ms/s. A conversion to IQ could be done in the libairspy by the host CPU. It’s the application that choose what is the best format to use, converted IQ stream or “real” data without conversion, depending of its needs.

In the following, we will use only the “real” mode at 5Ms/s to test what we could expect from the programmable IF filter of the RT820. To do that, we will use a noise source directly connected to the airspy and airspy_rx to save the received data to a file in raw real mode :

./airspy_rx -f 136 -a 5000000 -p 1 -g 10 -n 10000000 -t 1 -r test.raw

Then we will use the octave mathematical software to read the saved file and use the pwelsh function to display the noise power vs frequency :

base response

Man could clearly see the IF filter in action . The airspy firmware have programmed it in order to use most of the available 2.5Mhz bandwidth and to be as symmetric as possible around Fs/4 (see later).

Modifying IF bandwidth

Thanks to the libairspy rtl830_set_register function, it is possible to change the setting of the IF filter. So, I modified the airspy_rx command by adding parameters to set the two RL820 registers (R10 & R11) that control the IF filter, as wanted.

Tree different parameters could be set in these two registers :

By default, the airspy firmware set theses parameters to narrow/15/15 respectively for 5Mbit/s sampling.

Coarse IF filter bandwidth changes

First, let’s try to change the coarse if filter bandwidth parameter, keeping fine tuning and high pass filter to 15. We got the following graph :

coarse settings

We could clearly see two things :

  1. The filter bandwidth is changed only by changing the upper frequency limit
  2. The increase in level at high frequencies for middle and large position is the sign of aliasing : the filter have an upper frequency above Fs/2 in these positions.

The consequence of 2 is that only the narrower position is usable at Fs=5Ms/s, so we will stay with this value for the following.

Manual fine tuning IF bandwidth

Let change these parameters from 15 to 10 :

fine settings

Here, we see that by lowering this parameter, we could increase the usable bandwidth. As previously, if we go too far (less than 11), aliasing appears. But up to 5 different bandwidths could be used.

parameter -3db Hi cut Freq.
15 2088000
14 2121000
13 2155000
12 2188000
11 2221000

Note : I think that the airspy firmware don’t use the maximum bandwidth available because it targets more the IQ format than the “real” format, and the IQ conversion need a symmetric bandwidth around Fs/4.

High-pass filter frequency

The RL820 has more than a band-pass IF filter. It has a programmable high-pass filter too, that could be use to increase the low frequency limit of the IF bandwidth. Let try to change this parameter from 15 (lower, no effect) to 8 :

high pass settings

We could see, that, thanks to this parameter, we could reduce the bandwidth a lot. For too low values (< 8), the high-pass filter interacts with the IF band-pass filter and the resulting filter starts to not be usable (reduced gain and completely asymmetric filter), but eights values are usable :

parameter -3db Low cut Freq.
15 494600
14 609800
13 718100
12 806400
11 1026900
10 1302400
9 1455700
8 1597900

Conclusion

When used in “real” mode, man could easily program the R820T IF filter to got a large choice of IF bandwidths.

For example, in my acarsdec and vdlm2dec programs that generally don’t need large bandwidth and use “real” mode, I added a function, that given the received frequencies, will set the R820T registers to limit the IF bandwidth to what’s is needed.

As previously said, IQ conversion is done by the libairspy by mixing at Fs/4 and so the IF filter used must be centered around Fs/4 which is not possible for reduced or extended bandwidth(see graphs). A solution will be to rewrite the IQ conversion code to accept other center frequencies, but we will lose the speed optimization that are possible at Fs/4 only. A good compromise could be to use a filter centered on 3/8Fs and down-sample by 4 to get a 1.25Ms/s IQ stream with the advantage of an adapted IF filter :

3/8Fs filter