Skip to content

Commit 1376c0c

Browse files
committed
Example of how to start up SDR IGate automatically.
1 parent 80a1c18 commit 1376c0c

6 files changed

+68
-13
lines changed

Makefile.linux

+8-6
Original file line numberDiff line numberDiff line change
@@ -510,16 +510,17 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
510510
$(INSTALL) -D --mode=644 doc/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf $(INSTALLDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf
511511
$(INSTALL) -D --mode=644 doc/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf $(INSTALLDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf
512512
#
513-
# Sample config files also go into the doc directory.
513+
# Various sample config and other files go into examples under the doc directory.
514514
# When building from source, these can be put in home directory with "make install-conf".
515515
# When installed from .DEB or .RPM package, the user will need to copy these to
516516
# the home directory or other desired location.
517-
# Someone suggested that these could go into an "examples" subdirectory under doc.
518517
#
519-
$(INSTALL) -D --mode=644 direwolf.conf $(INSTALLDIR)/share/doc/direwolf/direwolf.conf
520-
$(INSTALL) -D --mode=644 telemetry-toolkit/telem-m0xer-3.txt $(INSTALLDIR)/share/doc/direwolf/telem-m0xer-3.txt
521-
$(INSTALL) -D --mode=644 telemetry-toolkit/telem-balloon.conf $(INSTALLDIR)/share/doc/direwolf/telem-balloon.conf
522-
$(INSTALL) -D --mode=644 telemetry-toolkit/telem-volts.conf $(INSTALLDIR)/share/doc/direwolf/telem-volts.conf
518+
$(INSTALL) -D --mode=644 direwolf.conf $(INSTALLDIR)/share/doc/direwolf/examples/direwolf.conf
519+
$(INSTALL) -D --mode=644 dw-start.sh $(INSTALLDIR)/share/doc/direwolf/examples/dw-start.sh
520+
$(INSTALL) -D --mode=644 sdr.conf $(INSTALLDIR)/share/doc/direwolf/examples/sdr.conf
521+
$(INSTALL) -D --mode=644 telemetry-toolkit/telem-m0xer-3.txt $(INSTALLDIR)/share/doc/direwolf/examples/telem-m0xer-3.txt
522+
$(INSTALL) -D --mode=644 telemetry-toolkit/telem-balloon.conf $(INSTALLDIR)/share/doc/direwolf/examples/telem-balloon.conf
523+
$(INSTALL) -D --mode=644 telemetry-toolkit/telem-volts.conf $(INSTALLDIR)/share/doc/direwolf/examples/telem-volts.conf
523524
#
524525
# "man" pages
525526
#
@@ -552,6 +553,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
552553
.PHONY: install-conf
553554
install-conf : direwolf.conf
554555
cp direwolf.conf ~
556+
cp sdr.conf ~
555557
cp telemetry-toolkit/telem-m0xer-3.txt ~
556558
cp telemetry-toolkit/telem-*.conf ~
557559
ifneq ($(wildcard $(HOME)/Desktop),)

doc/Raspberry-Pi-APRS.pdf

-173 Bytes
Binary file not shown.

doc/Raspberry-Pi-SDR-IGate.pdf

11.3 KB
Binary file not shown.

doc/User-Guide.pdf

1.64 KB
Binary file not shown.

dw-start.sh

+30-7
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,20 @@
1414
# This script has some specifics the Raspberry Pi.
1515
# Some adjustments might be needed for other Linux variations.
1616
#
17+
18+
#
19+
# When running from cron, we have a very minimal environment
20+
# including PATH=/usr/bin:/bin.
21+
#
22+
23+
export PATH=/usr/local/bin:$PATH
24+
1725
# First wait a little while in case we just rebooted
1826
# and the desktop hasn't started up yet.
1927
#
2028

2129
sleep 30
30+
LOGFILE=/tmp/dw-start.log
2231

2332
#
2433
# Nothing to do if it is already running.
@@ -28,7 +37,7 @@ a=`pgrep direwolf`
2837
if [ "$a" != "" ]
2938
then
3039
#date >> /tmp/dw-start.log
31-
#echo "Already running." >> /tmp/dw-start.log
40+
#echo "Already running." >> $LOGFILE
3241
exit
3342
fi
3443

@@ -52,26 +61,40 @@ then
5261
export DISPLAY="$d"
5362
fi
5463

55-
echo "DISPLAY=$DISPLAY" >> /tmp/dw-start.log
64+
echo "DISPLAY=$DISPLAY" >> $LOGFILE
65+
66+
echo "Start up application." >> $LOGFILE
5667

57-
echo "Start up application." >> /tmp/dw-start.log
68+
#
69+
# For normal operation as TNC, digipeater, IGate, etc.
70+
# Print audio statistics each 100 seconds for troubleshooting.
71+
#
72+
73+
DWCMD="direwolf -a 100"
74+
75+
# Alternative for running with SDR receiver.
76+
# Piping one application into another makes it a little more complicated.
77+
# We need to use bash for the | to be recognized.
78+
79+
#DWCMD="bash -c 'rtl_fm -f 144.39M - | direwolf -c sdr.conf -r 24000 -D 1 -'"
5880

5981
#
6082
# Adjust for your particular situation: gnome-terminal, xterm, etc.
6183
#
6284

85+
6386
if [ -x /usr/bin/lxterminal ]
6487
then
65-
/usr/bin/lxterminal -t "Dire Wolf" -e "/usr/local/bin/direwolf -a 100" &
88+
/usr/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" &
6689
elif [ -x /usr/bin/xterm ]
6790
then
68-
/usr/bin/xterm -bg white -fg black -e "/usr/local/bin/direwolf -a 100" &
91+
/usr/bin/xterm -bg white -fg black -e "$DWCMD" &
6992
elif [ -x /usr/bin/x-terminal-emulator ]
7093
then
71-
/usr/bin/x-terminal-emulator -e "/usr/local/bin/direwolf -a 100" &
94+
/usr/bin/x-terminal-emulator -e "$DWCMD" &
7295
else
7396
echo "Did not find an X terminal emulator."
7497
fi
7598

76-
echo "-----------------------" >> /tmp/dw-start.log
99+
echo "-----------------------" >> $LOGFILE
77100

sdr.conf

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#
2+
# Sample configuration for SDR read-only IGate.
3+
#
4+
5+
# We might not have an audio output device so set to null.
6+
# We will override the input half on the command line.
7+
ADEVICE null null
8+
CHANNEL 0
9+
MYCALL xxx
10+
11+
# First you need to specify the name of a Tier 2 server.
12+
# The current preferred way is to use one of these regional rotate addresses:
13+
14+
# noam.aprs2.net - for North America
15+
# soam.aprs2.net - for South America
16+
# euro.aprs2.net - for Europe and Africa
17+
# asia.aprs2.net - for Asia
18+
# aunz.aprs2.net - for Oceania
19+
20+
IGSERVER noam.aprs2.net
21+
22+
# You also need to specify your login name and passcode.
23+
# Contact the author if you can't figure out how to generate the passcode.
24+
25+
IGLOGIN xxx 123456
26+
27+
# That's all you need for a receive only IGate which relays
28+
# messages from the local radio channel to the global servers.
29+
30+

0 commit comments

Comments
 (0)