Skip to content

Commit 80a1c18

Browse files
committed
Minor documentation updates. Fix Makefile.linux for building with gpsd.
1 parent 4c60979 commit 80a1c18

9 files changed

+10
-7
lines changed

Makefile.linux

+9-6
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_9600.o hd
228228
fcs_calc.o ax25_pad.o \
229229
decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \
230230
gen_tone.o audio.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
231-
ptt.o beacon.o dwgps.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
231+
ptt.o beacon.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
232232
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o nmea.o serial_port.o log.o telemetry.o \
233233
dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o \
234234
misc.a geotranz.a
@@ -286,7 +286,7 @@ tocalls-symbols :
286286

287287
# Separate application to decode raw data.
288288

289-
decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a
289+
decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a
290290
$(CC) $(CFLAGS) -DDECAMAIN -o $@ $^ $(LDFLAGS)
291291

292292

@@ -325,7 +325,7 @@ gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c morse.c
325325
atest : atest.c fsk_fast_filter.h demod.c demod_afsk.c demod_9600.c \
326326
dsp.o hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
327327
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o \
328-
dwgps.o serial_port.o telemetry.c latlong.c symbols.c tt_text.c textcolor.c \
328+
dwgps.o dwgpsd.o serial_port.o telemetry.c latlong.c symbols.c tt_text.c textcolor.c \
329329
misc.a
330330
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
331331

@@ -492,11 +492,14 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
492492
#
493493
# Documentation. Various plain text files and PDF.
494494
#
495-
$(INSTALL) -D --mode=644 README.md $(INSTALLDIR)/share/doc/direwolf/README.md
496495
$(INSTALL) -D --mode=644 CHANGES.md $(INSTALLDIR)/share/doc/direwolf/CHANGES.md
497496
$(INSTALL) -D --mode=644 LICENSE-dire-wolf.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-dire-wolf.txt
498497
$(INSTALL) -D --mode=644 LICENSE-other.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-other.txt
499498
#
499+
# ./README.md is an overview for the project main page.
500+
# doc/README.md contains an overview of the PDF file contents and is more useful here.
501+
#
502+
$(INSTALL) -D --mode=644 doc/README.md $(INSTALLDIR)/share/doc/direwolf/README.md
500503
$(INSTALL) -D --mode=644 doc/User-Guide.pdf $(INSTALLDIR)/share/doc/direwolf/User-Guide.pdf
501504
$(INSTALL) -D --mode=644 doc/Raspberry-Pi-APRS.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS.pdf
502505
$(INSTALL) -D --mode=644 doc/Raspberry-Pi-APRS-Tracker.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS-Tracker.pdf
@@ -602,7 +605,7 @@ check-modem9600 : gen_packets atest
602605

603606
.PHONY : dtest
604607
dtest : digipeater.c pfilter.o ax25_pad.o dedupe.o fcs_calc.o tq.o textcolor.o \
605-
decode_aprs.o dwgpsnmea.o dwgps.o serial_port.o latlong.o telemetry.o symbols.o tt_text.o misc.a
608+
decode_aprs.o dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o latlong.o telemetry.o symbols.o tt_text.o misc.a
606609
$(CC) $(CFLAGS) -DDIGITEST -o $@ $^ $(LDFLAGS)
607610
./dtest
608611
rm dtest
@@ -629,7 +632,7 @@ tttexttest : tt_text.c textcolor.o misc.a
629632
# Unit test for Packet Filtering.
630633

631634
.PHONY: pftest
632-
pftest : pfilter.c ax25_pad.o textcolor.o fcs_calc.o decode_aprs.o dwgpsnmea.o dwgps.o serial_port.o latlong.o symbols.o telemetry.o tt_text.o misc.a
635+
pftest : pfilter.c ax25_pad.o textcolor.o fcs_calc.o decode_aprs.o dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o latlong.o symbols.o telemetry.o tt_text.o misc.a
633636
$(CC) $(CFLAGS) -DPFTEST -o $@ $^ $(LDFLAGS)
634637
./pftest
635638
rm pftest

beacon.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ static time_t sb_calculate_next_time (time_t now,
621621
if (g_tracker_debug_level >= 2) {
622622
text_color_set(DW_COLOR_DEBUG);
623623
dw_printf ("SmartBeaconing: Send now for heading change of %.0f\n", change);
624-
}
624+
}
625625

626626
next_time = now;
627627
}

doc/APRS-Telemetry-Toolkit.pdf

-681 Bytes
Binary file not shown.

doc/APRStt-Implementation-Notes.pdf

1.29 KB
Binary file not shown.

doc/Raspberry-Pi-APRS-Tracker.pdf

-21 Bytes
Binary file not shown.

doc/Raspberry-Pi-APRS.pdf

-11.3 KB
Binary file not shown.

doc/Raspberry-Pi-SDR-IGate.pdf

948 Bytes
Binary file not shown.

doc/User-Guide.pdf

7.22 KB
Binary file not shown.

doc/WA8LMF-TNC-Test-CD-Results.pdf

7.63 KB
Binary file not shown.

0 commit comments

Comments
 (0)