Skip to content

Commit d491f51

Browse files
committed
Misc fixes for upstream #20.
Bug fix for reading config files, a number of warning fixes, and a fix that allows Clang to be used to compile direwolf. modified: .gitignore modified: Makefile.linux modified: aclients.c modified: audio.c modified: config.c modified: demod_afsk.c modified: dwgpsd.c modified: igate.c modified: kiss.c modified: kissnet.c modified: ttcalc.c
1 parent 12cb910 commit d491f51

11 files changed

+43
-16
lines changed

.gitignore

+20-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ z*
66
*~
77
*.xlsx
88
*.stackdump
9-
direwolf.conf
109
*.wav
11-
fsk_fast_filter.h
1210

1311

1412
# Object files
@@ -41,6 +39,26 @@ fsk_fast_filter.h
4139
*.x86_64
4240
*.hex
4341

42+
# Binaries, other build results
43+
44+
aclients
45+
atest
46+
decode_aprs
47+
direwolf
48+
gen_fff
49+
gen_packets
50+
ll2utm
51+
log2gpx
52+
text2tt
53+
tt2text
54+
ttcalc
55+
utm2ll
56+
57+
direwolf.conf
58+
fsk_fast_filter.h
59+
direwolf.desktop
60+
61+
4462
# =========================
4563
# Operating System Files
4664
# =========================

Makefile.linux

+14-9
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,10 @@ gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c morse.c
327327

328328
# Unit test for AFSK demodulator
329329

330-
atest : atest.c fsk_fast_filter.h demod.c demod_afsk.c demod_9600.c \
331-
dsp.o hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
332-
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o \
333-
dwgps.o dwgpsd.o serial_port.o telemetry.c latlong.c symbols.c tt_text.c textcolor.c \
330+
atest : atest.c demod.o demod_afsk.o demod_9600.o \
331+
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \
332+
fcs_calc.o ax25_pad.o decode_aprs.o dwgpsnmea.o \
333+
dwgps.o dwgpsd.o serial_port.o telemetry.o latlong.o symbols.o tt_text.o textcolor.o \
334334
misc.a
335335
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
336336

@@ -683,26 +683,31 @@ kisstest : kiss_frame.c
683683

684684
# ----------------------------- Manual tests and experiments ---------------------------
685685

686+
# These are not included in a normal build. Might be broken.
686687

687688
# Unit test for IGate
688689

689690
itest : igate.c textcolor.c ax25_pad.c fcs_calc.c textcolor.o misc.a
690691
$(CC) $(CFLAGS) -DITEST -o $@ $^
691692
./itest
692693

693-
# Unit test for UDP reception with AFSK demodulator
694+
# Unit test for UDP reception with AFSK demodulator.
695+
# Temporary during development. Might not be useful anymore.
694696

695-
udptest : udp_test.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c rrbb.c
696-
fcs_calc.c ax25_pad.c decode_aprs.c symbols.c textcolor.c misc.a
697+
udptest : udp_test.c demod.o dsp.o demod_afsk.o demod_9600.o hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \
698+
fcs_calc.o ax25_pad.o decode_aprs.o symbols.o textcolor.o misc.a
697699
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
698700
./udptest
699701

702+
# For demodulator tweaking experiments.
703+
# Dependencies of demod*.c, rather than .o, are intentional.
704+
700705
demod.o : tune.h
701706
demod_afsk.o : tune.h
702707
demod_9600.o : tune.h
703708

704-
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
705-
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c misc.a
709+
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \
710+
fcs_calc.o ax25_pad.o decode_aprs.o telemetry.o latlong.o symbols.o tune.h textcolor.o misc.a
706711
$(CC) $(CFLAGS) -o atest $^ $(LDFLAGS)
707712
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
708713

aclients.c

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
#include <sys/types.h>
6868
#include <sys/ioctl.h>
6969
#include <sys/socket.h>
70+
#include <arpa/inet.h>
7071
#include <netinet/in.h>
7172
#include <netinet/tcp.h>
7273
#include <fcntl.h>

audio.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,7 @@ int audio_flush (int a)
11341134
{
11351135
#if USE_ALSA
11361136
int k;
1137-
char *psound;
1137+
unsigned char *psound;
11381138
int retries = 10;
11391139
snd_pcm_status_t *status;
11401140

config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1233,7 +1233,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
12331233
/* Later, we check for valid letters and no more than one letter if + specified. */
12341234

12351235
for (pc = t; *pc != '\0'; pc++) {
1236-
if ( ! isalpha(*pc) && ! *pc == '+') {
1236+
if ( ! isalpha(*pc) && ! (*pc == '+')) {
12371237
text_color_set(DW_COLOR_ERROR);
12381238
dw_printf ("Line %d: Demodulator type can only contain letters and + character.\n", line);
12391239
}

demod_afsk.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ static void emit_macro (char *name, int size, float *coeff)
720720
dw_printf ("\n");
721721
}
722722

723-
int main ()
723+
int main (void)
724724
{
725725
//int n;
726726
char fff_profile;

dwgpsd.c

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
#include <string.h>
4242
#include <errno.h>
4343
#include <time.h>
44+
#include <math.h>
4445

4546
#if __WIN32__
4647
#error Not for Windows

igate.c

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
#include <sys/types.h>
8282
#include <sys/ioctl.h>
8383
#include <sys/socket.h>
84+
#include <arpa/inet.h>
8485
#include <netinet/in.h>
8586
#include <netinet/tcp.h>
8687
#endif

kiss.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ void kiss_send_rec_packet (int chan, unsigned char *fbuf, int flen)
685685
text_color_set(DW_COLOR_DEBUG);
686686
dw_printf ("\n");
687687
dw_printf ("Packet content before adding KISS framing and any escapes:\n");
688-
hex_dump ((char*)fbuf, flen);
688+
hex_dump (fbuf, flen);
689689
}
690690

691691
kiss_len = kiss_encapsulate (stemp, flen+1, kiss_buff);

kissnet.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ void kissnet_send_rec_packet (int chan, unsigned char *fbuf, int flen)
511511
text_color_set(DW_COLOR_DEBUG);
512512
dw_printf ("\n");
513513
dw_printf ("Packet content before adding KISS framing and any escapes:\n");
514-
hex_dump ((char*)fbuf, flen);
514+
hex_dump (fbuf, flen);
515515
}
516516

517517
kiss_len = kiss_encapsulate (stemp, flen+1, kiss_buff);

ttcalc.c

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
#include <sys/types.h>
5858
#include <sys/ioctl.h>
5959
#include <sys/socket.h>
60+
#include <arpa/inet.h>
6061
#include <netinet/in.h>
6162
#include <netinet/tcp.h>
6263
#include <sys/errno.h>

0 commit comments

Comments
 (0)