Receiving with 2 channels on PlutoSDR

2 tx 2 rx plutosdr
Help us grow. Share with your friends!

The Analog devices PlutoSDR comes with the AD9361 chip. Meant for learning, the PlutoSDR comes at a much more affordable cost as compared to the USRP. Of course, the USRP has its own advantages while the PlutoSDR is like a stepping stone into the world of signal processing and communications. While the AD9361 is capable of 2TX and 2RX, PlutoSDR rev. A and rev. B, both had the second TX and RX channels unrouted on the PCB. Finally, revision C and D comes with the second RX and TX channels brought out on a u.FL connector. By default, the PlutoSDR factory firmware only enables single RX and TX channels. In this article, we will unlock the second TX/RX pair and further use it to receive some signals.

Unlocking the second TX/RX pair

There are multiple steps involved to achieve our intent. Firstly, let us verify that we are using the right firmware. Login to the plutoSDR over SSH and check the firmware version.

We can see that the PlutoSDR that I am using has version 0.34 firmware. Analog Devices says that you need at least version 0.33 to unlock dual rx/tx mode. In case you happen to have a lower version, follow this link and get your firmware updated.

Once you are on the latest firmware like I am, you should be able to proceed further and follow the instructions. Let us run a command and check the device mode.

Here, we set the compatible devices as “AD9361” and mode as “2r2t” which is required to enable the second transmit-receive pair.

Run the following commands once the PlutoSDR reboots.

We can see that both the transmit receive pairs are now active.

Using both the receivers in Python

Having both the transmit-receive pairs active, it’s time to actually use them. I tried with GNURadio but wasn’t really sure if the data I am receiving is correct. So, I decided to use python and process the data with a custom-written script. Now, I won’t go over the steps involved in setting up the environment and libraries. You can very well find those with a web search. Our main focus remains to acquire both the receiver’s data.

The given Python snippet configures both the receiver channels to have manual gain of 40dB, sets the LO to 2.71GHz and a Rx FIFO of 8192 depth. On calling the sdr.rx() function, PlutoSDR simultaneously collects the samples from both the receivers. On the python level, the data gets stored in a list.

The statements a = x[0][:] brings out the channel 0 data while b = x[1][:] brings out the channel 1 data from the list. Throughout the entire process, we have access to the complex, raw IQ data that’s ideal for all sorts of signal processing techniques.

In my little snippet, I separate out the real part and correlate the data from both the channels. The result looks something like this.

Unlocking the second receiver opens a world of new possibilities. A simple phased array receiver or maybe a DoA estimator using an interferometer technique? If I happen to do something interesting with this, I will be sure to post it here.

You can buy the ADALM PlutoSDR on Amazon here. Similarly, you can also purchase the HackRF and keep exploring the world of RF and signal processing.

nuclearrambo

Salil is an electronics enthusiast working on various RF and Microwave systems. In his free time he writes on the blog, talks over ham radio or builds circuits. He has Yaesu FT2900R VHF transceiver, FT450D HF transceiver and a TYT UV8000E Handheld transceiver.

You may also like...

1 Response

  1. Murat says:

    Hi Salil,

    Is it enough to make whatever you want in this post to activating second channel?
    Have faced some problems like in the other forums when you were trying to your code?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.