Changes between Version 25 and Version 26 of Tutorials/Wireless/Basic Usage


Ignore:
Timestamp:
Jun 4, 2020, 9:14:45 PM (4 years ago)
Author:
prasanthi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/Basic Usage

    v25 v26  
    209209
    210210==== Configure and run the application ====
    211 * Download the application source code from the attachment section below.
    212 {{{#!shell-session
    213 root@sdr-console:~$ wget https://wiki.cosmos-lab.org/raw-attachment/wiki/tutorials/basic_usage/spectrum_view.tar.gz
    214 
    215 root@sdr-console:~$ tar -zxvf spectrum_view.tar.gz
    216 root@sdr-console:~$ cd SPECTRUM_VIEW
     211* Go back to SandBox1 console, download the application source code from the attachment section below and copy it to the SDR.
     212{{{#!shell-session
     213username@console:~$ wget https://wiki.cosmos-lab.org/raw-attachment/wiki/Tutorials/BasicUsage/spectrum_view.tar.gz
     214username@console:~$ scp spectrum_view.tar.gz root@sdr2-s1-lg1:~/
     215}}}
     216
     217* Untar the source code.
     218{{{#!shell-session
     219root@sdr2-s1-lg1:~# tar -zxvf spectrum_view.tar.gz
     220root@sdr2-s1-lg1:~# cd SPECTRUM_VIEW
    217221}}}
    218222
    219223* Please refer to the README file in SPECTRUM_VIEW directory for instructions on compiling and running the application. Before compiling install a few required libraries.
    220224{{{#!shell-session
    221 root@sdr-console:~$ apt update
    222 root@sdr-console:~$ apt-get -y install libboost-all-dev liblog4cxx-dev cmake libfftw3-dev libxml2-dev libpopt-dev libsqlite3-dev pkg-config libxml2-utils gnulib
     225root@sdr2-s1-lg1:~/SPECTRUM_VIEW# apt update
     226root@sdr2-s1-lg1:~/SPECTRUM_VIEW# apt-get -y install libboost-all-dev liblog4cxx-dev cmake libfftw3-dev libxml2-dev libpopt-dev libsqlite3-dev pkg-config libxml2-utils gnulib
    223227}}}
    224228
     
    226230* Now compile and make the websocket library.
    227231{{{#!shell-session
    228 root@sdr-console:~$ make websock
     232root@sdr2-s1-lg1:~/SPECTRUM_VIEW# make websock
    229233}}}
    230234