Changes between Version 11 and Version 12 of Tutorials/Wireless/Basic Usage


Ignore:
Timestamp:
Oct 14, 2019, 5:01:13 PM (5 years ago)
Author:
nilanjan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/Basic Usage

    v11 v12  
    190190
    191191=== Run the application ===
    192 Download the application source code from the attachment section below. Please refer to the README file in SPECTRUM_VIEW directory for instruction on compiling and running the application.
     192Download the application source code from the attachment section below.
    193193{{{
    194194root@sdr-console> wget https://wiki.cosmos-lab.org/raw-attachment/wiki/tutorials/basic_usage/spectrum_view.tar.gz
     
    196196root@sdr-console> tar -zxvf spectrum_view.tar.gz
    197197
     198}}}
     199
     200Please refer to the README file in SPECTRUM_VIEW directory for instructions on compiling and running the application. Before compiling the application, install and compile a few dependencies.
     201{{{
     202root@sdr-console> apt update
     203root@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
     204
     205root@sdr-console> git clone https://github.com/zaphoyd/websocketpp.git
     206root@sdr-console> pushd websocketpp
     207root@sdr-console> cmake . -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON
     208root@sdr-console> make -j 4
     209root@sdr-console> make install
     210root@sdr-console> popd
     211}}}
     212
     213Now if all the dependencies installed successfully, compile application.
     214{{{
     215root@sdr-console> make
     216root@sdr-console> make install
    198217}}}
    199218