Skip to content

Commit 678b09d

Browse files
committed
New kissutil application.
1 parent 0dbb376 commit 678b09d

7 files changed

+1564
-41
lines changed

Makefile.linux

+16-9
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55

66

7-
8-
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc
7+
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
98

109
all : $(APPS) direwolf.desktop direwolf.conf
1110
@echo " "
@@ -255,18 +254,18 @@ endif
255254
# but the initial test doesn't look good. About 2.3 times as slow.
256255

257256
# If you want to use OSS (for FreeBSD, OpenBSD) instead of
258-
# ALSA (for Linux), comment out (or remove) the two lines below.
259-
257+
# ALSA (for Linux), comment out (or remove) the line below.
260258
# TODO: Can we automate this somehow?
261259

262-
CFLAGS += -DUSE_ALSA
263-
LDFLAGS += -lasound
260+
alsa = 1
264261

265262
ifeq ($(wildcard /usr/include/pthread.h),)
266263
$(error /usr/include/pthread.h does not exist. Install it with "sudo apt-get install libc6-dev" or "sudo yum install libc6-dev" )
267264
endif
268265

269-
ifneq ($(USE_ALSA),)
266+
ifneq ($(alsa),)
267+
CFLAGS += -DUSE_ALSA
268+
LDFLAGS += -lasound
270269
ifeq ($(wildcard /usr/include/alsa/asoundlib.h),)
271270
$(error /usr/include/alsa/asoundlib.h does not exist. Install it with "sudo apt-get install libasound2-dev" or "sudo yum install libasound2-dev" )
272271
endif
@@ -377,9 +376,9 @@ tocalls-symbols :
377376

378377
# Separate application to decode raw data.
379378

380-
# First two use .c rather than .o because they depend on DECAMAIN definition.
379+
# First three use .c rather than .o because they depend on DECAMAIN definition.
381380

382-
decode_aprs : decode_aprs.c kiss_frame.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
381+
decode_aprs : decode_aprs.c kiss_frame.c ax25_pad.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a
383382
$(CC) $(CFLAGS) -DDECAMAIN -o $@ $^ $(LDFLAGS)
384383

385384

@@ -429,6 +428,13 @@ aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.o misc.a
429428
$(CC) $(CFLAGS) -g -o $@ $^
430429

431430

431+
# Talk to a KISS TNC.
432+
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
433+
434+
kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port.o dtime_now.o sock.o misc.a
435+
$(CC) $(CFLAGS) -g -DKISSUTIL -o $@ $^
436+
437+
432438
# Touch Tone to Speech sample application.
433439

434440
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o misc.a
@@ -562,6 +568,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
562568
$(INSTALL) gen_packets $(INSTALLDIR)/bin
563569
$(INSTALL) atest $(INSTALLDIR)/bin
564570
$(INSTALL) ttcalc $(INSTALLDIR)/bin
571+
$(INSTALL) kissutil $(INSTALLDIR)/bin
565572
$(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
566573
#
567574
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.

Makefile.win

+14-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#
1717

1818

19-
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_packets atest ttcalc tnctest
19+
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_packets atest ttcalc tnctest kissutil
2020

2121

2222
# People say we need -mthreads option for threads to work properly.
@@ -30,6 +30,8 @@ CFLAGS := -Ofast -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_
3030
AR := ar
3131

3232
CFLAGS += -g
33+
# TEMP EXPERIMENT - DO NOT RELEASE
34+
#CFLAGS += -fsanitize=undefined
3335

3436
# For version 1.4, we upgrade from gcc 4.6.2 to 4.9.3.
3537

@@ -159,9 +161,9 @@ tocalls-symbols :
159161

160162
# Separate application to decode raw data.
161163

162-
# First two use .c rather than .o because they depend on DECAMAIN definition.
164+
# First three use .c rather than .o because they depend on DECAMAIN definition.
163165

164-
decode_aprs : decode_aprs.c kiss_frame.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 regex.a misc.a geotranz.a
166+
decode_aprs : decode_aprs.c kiss_frame.c ax25_pad.c dwgpsnmea.o dwgps.o serial_port.o symbols.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o regex.a misc.a geotranz.a
165167
$(CC) $(CFLAGS) -DDECAMAIN -o decode_aprs $^
166168

167169

@@ -556,6 +558,14 @@ aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.c misc.a regex.a
556558
$(CC) $(CFLAGS) -o $@ $^ -lwinmm -lws2_32
557559

558560

561+
# Talk to a KISS TNC.
562+
563+
# Note: kiss_frame.c has conditional compilation on KISSUTIL.
564+
565+
kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port.o sock.o dtime_now.o misc.a regex.a
566+
$(CC) $(CFLAGS) -DKISSUTIL -o $@ $^ -lwinmm -lws2_32
567+
568+
559569
# Touch Tone to Speech sample application.
560570

561571
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o misc.a regex.a
@@ -641,6 +651,7 @@ dist-win : direwolf.exe decode_aprs.exe text2tt.exe tt2text.exe ll2utm.exe utm2l
641651
gen_packets.exe \
642652
atest.exe \
643653
ttcalc.exe \
654+
kissutil.exe \
644655
dwespeak.bat \
645656
telemetry-toolkit/*
646657
rm README-doc.md

0 commit comments

Comments
 (0)