Changes between Version 6 and Version 7 of Workshops/Sig Comm2022/group/labrador
- Timestamp:
- Aug 10, 2022, 6:02:55 PM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Workshops/Sig Comm2022/group/labrador
v6 v7 12 12 Follow the steps below to gain access to the console and set up your node with an appropriate image. 13 13 1. Use ssh to connect to the console for the grid domain: 14 {{{ #!shell14 {{{ 15 15 ssh your-username@console.grid.orbit-lab.org 16 16 }}} … … 22 22 23 23 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 {{{ #!shell24 {{{ 25 25 omf load -i baseline-sdr.ndz -t node3-2,node8-7 26 26 }}} … … 30 30 31 31 3. Once the nodes are successfully imaged, turn them on and check the status 32 {{{ #!shell32 {{{ 33 33 omf tell -a on -t node3-2,node8-7 34 34 }}} 35 {{{ #!shell35 {{{ 36 36 omf stat -t node3-2,node8-7 37 37 }}} 38 38 4. After waiting for the nodes to power up and boot, you will be able to ssh to them from the console: 39 {{{ #!shell39 {{{ 40 40 ssh root@node3-2 41 41 }}} … … 58 58 For 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] 59 59 1. ssh to node3-2 and start the rx_ascii_art_dft demo with the following command: 60 {{{ #!shell60 {{{ 61 61 /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 62 62 }}} … … 66 66 67 67 2. ssh to node8-7 and start the tx_waveforms demo with the following command: 68 {{{ #!shell68 {{{ 69 69 /usr/lib/uhd/examples/tx_waveforms --args="type=b200" --wave-freq 1e6 --wave-type SINE --freq 2400e6 --rate 5e6 --gain 10 --ampl 0.2 70 70 }}} … … 75 75 76 76 We can generate a different type of signal by changing the {{{wave-type}}} argument. For instance, if we transmit a square wave: 77 {{{ #!shell77 {{{ 78 78 /usr/lib/uhd/examples/tx_waveforms --args="type=b200" --wave-freq 1e6 --wave-type SQUARE --freq 2400e6 --rate 5e6 --gain 10 --ampl 0.2 79 79 }}}