Changes between Version 6 and Version 7 of Workshops/Sig Comm2022/group/labrador


Ignore:
Timestamp:
Aug 10, 2022, 6:02:55 PM (2 years ago)
Author:
jennyshane
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Workshops/Sig Comm2022/group/labrador

    v6 v7  
    1212 Follow the steps below to gain access to the console and set up your node with an appropriate image.
    1313 1. Use ssh to connect to the console for the grid domain:
    14  {{{#!shell
     14 {{{
    1515 ssh your-username@console.grid.orbit-lab.org
    1616 }}}
     
    2222
    2323 In this case, we're loading the "baseline-sdr.ndz" image, which is a pre-built image provided for researchers to use as a starting point. The image contains UHD 3.15 and Gnuradio 3.8 and uses Ubuntu 18.04.
    24  {{{#!shell
     24 {{{
    2525 omf load -i baseline-sdr.ndz -t node3-2,node8-7
    2626 }}}
     
    3030
    3131 3. Once the nodes are successfully imaged, turn them on and check the status
    32  {{{#!shell
     32 {{{
    3333 omf tell -a on -t node3-2,node8-7
    3434 }}}
    35  {{{#!shell
     35 {{{
    3636 omf stat -t node3-2,node8-7
    3737 }}}
    3838 4. After waiting for the nodes to power up and boot, you will be able to ssh to them from the console:
    39  {{{#!shell
     39 {{{
    4040 ssh root@node3-2
    4141 }}}
     
    5858For this demo, we'll be running some of the demo applications that are installed with uhd. Source code for all of the samples can be found here: [https://github.com/EttusResearch/uhd/tree/UHD-3.15.LTS/host/examples]
    5959 1. ssh to node3-2 and start the rx_ascii_art_dft demo with the following command:
    60  {{{#!shell
     60 {{{
    6161 /usr/lib/uhd/examples/rx_ascii_art_dft --args "type=b200" --freq 2400e6 --rate 5e6 --frame-rate 10 --gain 10 --ref-lvl -30 --dyn-rng 70
    6262 }}}
     
    6666
    6767 2. ssh to node8-7 and start the tx_waveforms demo with the following command:
    68  {{{#!shell
     68 {{{
    6969 /usr/lib/uhd/examples/tx_waveforms --args="type=b200" --wave-freq 1e6 --wave-type SINE --freq 2400e6 --rate 5e6 --gain 10 --ampl 0.2
    7070 }}}
     
    7575
    7676 We can generate a different type of signal by changing the {{{wave-type}}} argument. For instance, if we transmit a square wave:
    77  {{{#!shell
     77 {{{
    7878 /usr/lib/uhd/examples/tx_waveforms --args="type=b200" --wave-freq 1e6 --wave-type SQUARE --freq 2400e6 --rate 5e6 --gain 10 --ampl 0.2
    7979 }}}