Comments on: Packet Radio with the Raspberry Pi https://photobyte.org/packet-radio-raspberry-pi/ Freelance Technical Author, Illustrator & Photographer Mon, 06 Apr 2020 22:21:43 +0000 hourly 1 https://wordpress.org/?v=6.4.3 By: Mike Richards https://photobyte.org/packet-radio-raspberry-pi/#comment-92387 Mon, 06 Apr 2020 22:21:43 +0000 https://photobyte.org/?p=1241#comment-92387 In reply to Chris.

Hi Chris,
I’ve just encountered this problem myself whilst working on a simple APRS iGate Rx only node. As you say the solution is to switch to the development branch. The author is aware of the issue so I’m hoping he will integrate the updates with the main release. In the meantime I’ve put together the following script that will automate the installation of an Rx node:
#!/bin/bash
echo "

Installing rtl-sdr

"
cd ~

sudo apt install -y rtl-sdr libasound2-dev cmake
echo "
Downloading and building Dire Wolf
"
git clone https://github.com/wb2osz/direwolf.git/
cd direwolf
git checkout dev
mkdir build && cd build
cmake ..
make -j4
sudo make install
#Create custom config file for Dire Wolf
cd ~
echo "
ADEVICE stdin null
CHANNEL 0
MYCALL enter your call
MODEM 1200
IGSERVER euro.aprs2.net
IGLOGIN your call and iGate passcode
PBEACON sendto=IG delay=0:30 every=60:00 symbol="igate" overlay=R Your lat/lon in this format:lat=nn^nn.nnN long=nn^nn.nnW
">aprs.conf
echo "
Installation complete...
Start the APRS server with: rtl_fm -f 144.80M - |direwolf -c aprs.conf -r 24000 -D 1 -
"

]]>
By: Chris https://photobyte.org/packet-radio-raspberry-pi/#comment-92308 Mon, 06 Apr 2020 16:11:28 +0000 https://photobyte.org/?p=1241#comment-92308 Mike, I followed the instructions in your RPi book and text above for installing Direwolf but got a flashing warning about configuration of the USB sound card, even after updating direwolf.conf. There were some errors during the compiling. After reading the github/wb2osz I tried the ver 1.6 Dev version and all seems to work. Possibly some compatibility problems between Direwolf 1.5 and Raspian Buster.
I understand you use vox on your transceiver to switch between transmit and receive, did this work ok? Direwolf ver 1.6 allows use of RPi GPIO pin for PTT switching. Chris

]]>