Difference between revisions of "WSPR: Compile"

From OnnoWiki
Jump to navigation Jump to search
Line 32: Line 32:
  
 
==untuk Ubuntu 14.04==
 
==untuk Ubuntu 14.04==
Edit
 
  
cd /usr/local/src/wspr
+
Tidak perlu di apa-apa kan,
vi Makefile
+
bisa langsung
 
 
Pastikan
 
 
 
f2py menjadi f2py3.4
 
  
 +
make && make install
  
 
==Compile==
 
==Compile==

Revision as of 14:47, 6 January 2015

Instalasi aplikasi pendukung

Di Ubuntu 14.04

sudo apt-get install subversion python3-dev python3-numpy python3-imaging-tk python3-tk \
python3-pil libportaudio2 portaudio19-dev libsamplerate0-dev gfortran cl-fftw3 \
python-dev autoconf

Di Ubuntu 12.04

sudo apt-get install subversion python3-dev python3-numpy python3-tk \
libportaudio2 portaudio19-dev libsamplerate0-dev gfortran cl-fftw3 \
python-dev

Download

cd /usr/local/src
svn co svn://svn.code.sf.net/p/wsjt/wsjt/branches/wspr

Siapkan

cd /usr/local/src/wspr
./autogen.sh

untuk Ubuntu 12.04

cd /usr/bin
cp f2py3.2 f2py3


untuk Ubuntu 14.04

Tidak perlu di apa-apa kan, bisa langsung

make && make install

Compile

make clean
make
sudo make install

Cara Lama

Untuk i386

./configure \
--with-portaudio-include-dir=/usr/include \
--with-portaudio-lib-dir=/usr/lib/i386-linux-gnu
make

Untuk amd64

./configure \
--with-portaudio-include-dir=/usr/include \ 
--with-portaudio-lib-dir=/usr/lib/x86_64-linux-gnu

Run

Bisa langsung dari shell sebagai superuser.

sudo su

wspr

Kita butuh akses superuser agar wspr dapat dengan mudah mengakses /dev/ttyUSB0 untuk menswitch PTT

Cara lama

cd /usr/bin/
./wspr

Buang Secara Periodik File Audio

Ternyata default wspr akan menyimpan file audio. Sebaiknya di buang secara periodik.

crontab -e

Isi dengan

0 * * * * rm -Rf /home/username/.wspr/save/* &


Referensi


Pranala Menarik