wiki:Tutorials/k0SDR/Tutorial25

Version 27 (modified by tingjunchen, 6 years ago) ( diff )

Full-Duplex Wireless using USRP N210

Description

In this tutorial, we'll use node11-10 in the main grid (equipped with a USRP N210) to transmit and receive a single frequency over the air to demonstrate full-duplex wireless capability using the Columbia FlexICoN's Gen-1 Frequency-Flat Amplitude- and Phase-based RF Canceller. Pictures of the FlexICoN RF canceller and node11-10 in the main grid equipped with full-duplex capability are below:

Figure 1: The ORBIT-FlexICoN Full-Duplex Node
(a) The FlexICoN RF Canceller (b) Full-Duplex SDR at node11-10 in the ORBIT grid

For more information, please read:

T. Chen, J. Zhou, N. Grimwood, R. Fogel, J. Marasevic, H. Krishnaswamy, and G. Zussman, “Demo: Full-duplex Wireless based on a Small-Form-Factor Analog Self-Interference Canceller,” in Proc. ACM MobiHoc'16, 2016. (PDF) (DOI)

Please email Tingjun Chen (tingjun [at] ee.columbia.edu) if you are using (or plan to use) the full-duplex node, or if you have any questions. We also thank Mahmood Baraani Dasterjerdi and Steven Alfano for their great contributions.

Hardware / Software Resources Utilized

  1. USRP N210 with node11-10 in the ORBIT main grid
  2. SUB-20 is a multi-interface USB adapter for providing popular interfaces between PC (USB host) and different hardware devices. Specifically, we use the SUB-20 SPI module to control and configure the Gen-1 RF canceller (see Fig. 1(a)). The user manual can be found here.
  3. UHD is already installed with the imaged SDR node.
  4. The Eigen C++ Library is used for basic algebra used in channel estimation and digital self-interference cancellation. The Eigen releases can be found on the this website. We used the latest stable release Eigen 3.3.4 through our testings and experiments.

All the source code is also publicly available at here.

Set Up

Before you can access the testbed, you need to make a reservation and get it approved by the reservation service. After receiving the reservation's confirmation (approval) email:

  • Login into reserved domain: ssh username@conslole.grid.orbit-lab.org
  • Make sure that the full-duplex node is powered down for loading the desired image: omf tell -a offh -t node11-10
  • Load an image on the node (this process can take about a few minutes so please be patient): omf load -i orbit-flexicon.ndz -t node11-10
  • Turn on the node: omf tell -a on -t node11-10
  • Login into the node: ssh root@node11-10

After login into the node, there is a flexicon_orbit folder under the home directory of node11-10 which contains the source code of this example. You can always retrieve the most recently updated code from here.

Run the Experiments

You will need to login into the full-duplex node (by ssh root@node11-10) in two separate terminal windows lo for running the experiment: one for the main full-duplex transceiver UHD program and one for controlling the RF canceller

  1. In window 1 (UHD):
  • Build the example:
    cd ~/flexicon_orbit/fd_transceiver_simple/uhd
    mkdir build
    cd build
    cmake ../
    make
    
  • Check the serial number of the USRP N210 (it should be F331D4): uhd_find_devices
  • Run the example with IQ rate rate, carrier frequency freq, TX gain tx-gain, and RX gain rx-gain:
    ./fd_transceiver_simple --tx-args="serial=F331D4" --rx-args="serial=F331D4" --rate 1e6 --freq 900e6 --tx-gain 10 --rx-gain 10
    

The default sine wave has an amplitude ampl = 0.3 and wave frequency wave-freq = 100e3 (100kHz).

  1. In window 2 (SUB-20):

Attachments (7)

Note: See TracWiki for help on using the wiki.