Changes between Version 25 and Version 26 of Tutorials/Wireless/Basic Usage
- Timestamp:
- Jun 4, 2020, 9:14:45 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Wireless/Basic Usage
v25 v26 209 209 210 210 ==== 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 213 username@console:~$ wget https://wiki.cosmos-lab.org/raw-attachment/wiki/Tutorials/BasicUsage/spectrum_view.tar.gz 214 username@console:~$ scp spectrum_view.tar.gz root@sdr2-s1-lg1:~/ 215 }}} 216 217 * Untar the source code. 218 {{{#!shell-session 219 root@sdr2-s1-lg1:~# tar -zxvf spectrum_view.tar.gz 220 root@sdr2-s1-lg1:~# cd SPECTRUM_VIEW 217 221 }}} 218 222 219 223 * 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. 220 224 {{{#!shell-session 221 root@sdr -console:~$apt update222 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 gnulib225 root@sdr2-s1-lg1:~/SPECTRUM_VIEW# apt update 226 root@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 223 227 }}} 224 228 … … 226 230 * Now compile and make the websocket library. 227 231 {{{#!shell-session 228 root@sdr -console:~$make websock232 root@sdr2-s1-lg1:~/SPECTRUM_VIEW# make websock 229 233 }}} 230 234