Skip to content

Commit d85abe2

Browse files
committed
AX.25 v2.2 connected mode.
modified: CHANGES.md modified: Makefile.linux modified: Makefile.macosx modified: Makefile.win modified: README.md modified: atest.c modified: audio.h new file: ax25_link.c new file: ax25_link.h modified: ax25_pad.c modified: ax25_pad.h modified: ax25_pad2.c new file: cdigipeater.c new file: cdigipeater.h modified: config.c modified: config.h modified: digipeater.c modified: direwolf.c modified: direwolf.h modified: dlq.c modified: dlq.h modified: doc/Going-beyond-9600-baud.pdf modified: doc/Raspberry-Pi-APRS.pdf modified: doc/Raspberry-Pi-SDR-IGate.pdf modified: doc/User-Guide.pdf modified: gen_packets.c modified: hdlc_rec.c modified: hdlc_send.c modified: hdlc_send.h modified: igate.c modified: log.c modified: log.h modified: multi_modem.c modified: pfilter.c modified: pfilter.h modified: ptt.c modified: recv.c modified: serial_port.c modified: server.c modified: server.h modified: symbols-new.txt modified: tocalls.txt modified: tq.c modified: tq.h modified: waypoint.c modified: xid.c new file: xid.h modified: xmit.c
1 parent 2a08f33 commit d85abe2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+9601
-559
lines changed

CHANGES.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11

22
# Revision History #
33

4+
5+
6+
----------
7+
8+
## Version 1.4 -- Development snapshot D -- November 2016 ##
9+
10+
This is a snapshot at some semi-stable point in the development of the next version. It is not well tested. New features might be incomplete, poorly documented, and subject to change.
11+
12+
13+
### New Features: ###
14+
15+
- AX.25 v2.2 connected mode. See chapter 10 of User Guide for details.
16+
17+
418
----------
519

620
## Version 1.4 -- Development snapshot C -- June 2016 ##

Makefile.linux

+13-4
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,12 @@ z := $(notdir ${CURDIR})
230230

231231
direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o demod_9600.o hdlc_rec.o \
232232
hdlc_rec2.o multi_modem.o rdq.o rrbb.o dlq.o \
233-
fcs_calc.o ax25_pad.o \
233+
fcs_calc.o ax25_pad.o ax25_pad2.o xid.o \
234234
decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \
235-
gen_tone.o audio.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
235+
gen_tone.o audio.o audio_stats.o digipeater.o cdigipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
236236
ptt.o beacon.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
237237
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o waypoint.o serial_port.o log.o telemetry.o \
238-
dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o mheard.o \
238+
dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o mheard.o ax25_link.o \
239239
misc.a geotranz.a
240240
$(CC) -o $@ $^ $(LDFLAGS)
241241
ifneq ($(enable_gpsd),)
@@ -588,7 +588,7 @@ install-rpi : dw-start.sh
588588
# Combine some unit tests into a single regression sanity check.
589589

590590

591-
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest pad2test check-modem1200 check-modem300 check-modem9600 check-modem19200 check-modem2400 check-modem4800
591+
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest pad2test xidtest check-modem1200 check-modem300 check-modem9600 check-modem19200 check-modem2400 check-modem4800
592592

593593
# Can we encode and decode at popular data rates?
594594

@@ -708,6 +708,15 @@ pad2test : ax25_pad2.c ax25_pad.c fcs_calc.o textcolor.o misc.a
708708
rm pad2test
709709

710710

711+
# Unit Test for XID frame encode/decode.
712+
713+
.PHONY: xidtest
714+
xidtest : xid.c textcolor.o misc.a
715+
$(CC) $(CFLAGS) -DXIDTEST -o $@ $^ $(LDFLAGS)
716+
./xidtest
717+
rm xidtest
718+
719+
711720

712721
# ----------------------------- Manual tests and experiments ---------------------------
713722

Makefile.macosx

+3-3
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ z := $(notdir ${CURDIR})
221221

222222
# Main application.
223223

224-
direwolf : direwolf.o aprs_tt.o audio_portaudio.o audio_stats.o ax25_pad.o beacon.o \
224+
direwolf : direwolf.o aprs_tt.o audio_portaudio.o audio_stats.o ax25_link.o ax25_pad.o ax25_pad2.o beacon.o \
225225
config.o decode_aprs.o dedupe.o demod_9600.o demod_afsk.o demod_psk.o \
226-
demod.o digipeater.o dlq.o dsp.o dtime_now.o dtmf.o dwgps.o \
226+
demod.o digipeater.o cdigipeater.o dlq.o dsp.o dtime_now.o dtmf.o dwgps.o \
227227
encode_aprs.o encode_aprs.o fcs_calc.o fcs_calc.o gen_tone.o \
228228
geotranz.a hdlc_rec.o hdlc_rec2.o hdlc_send.o igate.o kiss_frame.o \
229229
kiss.o kissnet.o latlong.o latlong.o log.o morse.o multi_modem.o \
230230
waypoint.o serial_port.o pfilter.o ptt.o rdq.o recv.o rrbb.o server.o \
231-
symbols.o telemetry.o textcolor.o tq.o tt_text.o tt_user.o xmit.o \
231+
symbols.o telemetry.o textcolor.o tq.o tt_text.o tt_user.o xid.o xmit.o \
232232
dwgps.o dwgpsnmea.o mheard.o
233233
$(CC) $(CFLAGS) -o $@ $^ -lpthread $(LDLIBS) -lm
234234

Makefile.win

+19-9
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
19+
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_packets atest ttcalc tnctest
2020

2121

2222
# People say we need -mthreads option for threads to work properly.
@@ -39,8 +39,6 @@ CFLAGS += -g
3939
#CFLAGS += -fsanitize=address -fno-omit-frame-pointer
4040

4141

42-
# TODO: Development in progress. Don't try using yet.
43-
#CFLAGS += -DNEW14
4442

4543
#
4644
# Let's see impact of various optimization levels.
@@ -86,16 +84,14 @@ demod_afsk.o : fsk_demod_state.h
8684
demod_psk.o : fsk_demod_state.h
8785

8886

89-
# later ax25_link.o
90-
9187
direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o demod_9600.o hdlc_rec.o \
9288
hdlc_rec2.o multi_modem.o rdq.o rrbb.o dlq.o \
93-
fcs_calc.o ax25_pad.o ax25_pad2.o \
89+
fcs_calc.o ax25_pad.o ax25_pad2.o xid.o \
9490
decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \
95-
gen_tone.o morse.o audio_win.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o \
91+
gen_tone.o morse.o audio_win.o audio_stats.o digipeater.o cdigipeater.o pfilter.o dedupe.o tq.o xmit.o \
9692
ptt.o beacon.o dwgps.o encode_aprs.o latlong.o textcolor.o \
9793
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o waypoint.o serial_port.o log.o telemetry.o \
98-
dwgps.o dwgpsnmea.o dtime_now.o mheard.o \
94+
dwgps.o dwgpsnmea.o dtime_now.o mheard.o ax25_link.o \
9995
dw-icon.o regex.a misc.a geotranz.a
10096
$(CC) $(CFLAGS) -o $@ $^ -lwinmm -lws2_32
10197

@@ -260,7 +256,7 @@ strlcat.o : misc/strlcat.c
260256
# Combine some unit tests into a single regression sanity check.
261257

262258

263-
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest pad2test check-modem1200 check-modem300 check-modem9600 check-modem19200 check-modem2400 check-modem4800
259+
check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest pad2test xidtest check-modem1200 check-modem300 check-modem9600 check-modem19200 check-modem2400 check-modem4800
264260

265261
# Can we encode and decode at popular data rates?
266262
# Verify that single bit fixup increases the count.
@@ -317,6 +313,7 @@ atest : atest.c fsk_fast_filter.h demod.c demod_afsk.c demod_psk.c demod_9600.c
317313
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o \
318314
dwgpsnmea.o dwgps.o serial_port.o latlong.c \
319315
symbols.c tt_text.c textcolor.c telemetry.c dtime_now.o \
316+
decode_aprs.o log.o \
320317
misc.a regex.a
321318
echo " " > tune.h
322319
$(CC) $(CFLAGS) -o $@ $^
@@ -412,10 +409,23 @@ pad2test : ax25_pad2.c ax25_pad.c fcs_calc.o textcolor.o regex.a misc.a
412409
./pad2test
413410
rm pad2test.exe
414411

412+
# Unit Test for XID frame encode/decode.
413+
414+
.PHONY: xidtest
415+
xidtest : xid.c textcolor.o misc.a
416+
$(CC) $(CFLAGS) -DXIDTEST -o $@ $^
417+
./xidtest
418+
rm xidtest.exe
419+
420+
415421

416422
# ------------------------------ Other manual testing & experimenting -------------------------------
417423

418424

425+
tnctest : tnctest.c textcolor.o dtime_now.o serial_port.o misc.a
426+
$(CC) $(CFLAGS) -o $@ $^ -lwinmm -lws2_32
427+
428+
419429
# For tweaking the demodulator.
420430

421431
demod.o : tune.h

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ Decodes more than 1000 error-free frames from [WA8LMF TNC Test CD](http://wa8lmf
4242

4343
- Includes separate raw packet decoder, decode_aprs.
4444

45+
- AX.25 v2.2 connected mode. (New in version 1.4.)
46+
4547
- Open source so you can see how it works and make your own modifications.
4648

4749
- Runs in 3 different environments:
@@ -95,4 +97,4 @@ Here are some good places to share information:
9597
- [TAPR aprssig](http://www.tapr.org/pipermail/aprssig/)
9698

9799

98-
100+
The github "issues" section is for reporting software defects and enhancement requests. It is NOT a place to ask questions or have general discussions. Please use one of the locations above.

atest.c

+18
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,24 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
743743
ax25_safe_print ((char *)pinfo, info_len, 0);
744744
dw_printf ("\n");
745745

746+
#if 1 // temp experiment TODO: remove this.
747+
748+
#include "decode_aprs.h"
749+
#include "log.h"
750+
751+
if (ax25_is_aprs(pp)) {
752+
753+
decode_aprs_t A;
754+
755+
decode_aprs (&A, pp, 0);
756+
757+
// Temp experiment to see how different systems set the RR bits in the source and destination.
758+
// log_rr_bits (&A, pp);
759+
760+
}
761+
#endif
762+
763+
746764
ax25_delete (pp);
747765

748766
} /* end fake dlq_append */

audio.h

+12-2
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,14 @@ struct audio_s {
8989
/* statistics reports. This is set by */
9090
/* the "-a" option. 0 to disable feature. */
9191

92+
int xmit_error_rate; /* For testing purposes, we can generate frames with an invalid CRC */
93+
/* to simulate corruption while going over the air. */
94+
/* This is the probability, in per cent, of randomly corrupting it. */
95+
/* Normally this is 0. 25 would mean corrupt it 25% of the time. */
96+
97+
int recv_error_rate; /* Similar but the % probablity of dropping a received frame. */
98+
99+
92100
/* Properties for each audio channel, common to receive and transmit. */
93101
/* Can be different for each radio channel. */
94102

@@ -166,18 +174,20 @@ struct audio_s {
166174
int passall; /* Allow thru even with bad CRC. */
167175

168176

177+
169178
/* Additional properties for transmit. */
170179

171180
/* Originally we had control outputs only for PTT. */
172181
/* In version 1.2, we generalize this to allow others such as DCD. */
182+
/* In version 1.4 we add CON for connected to another station. */
173183
/* Index following structure by one of these: */
174184

175185

176186
#define OCTYPE_PTT 0
177187
#define OCTYPE_DCD 1
178-
#define OCTYPE_FUTURE 2
188+
#define OCTYPE_CON 2
179189

180-
#define NUM_OCTYPES 4 /* number of values above */
190+
#define NUM_OCTYPES 4 /* number of values above. WHY IS THIS NOT 3? */
181191

182192
struct {
183193

0 commit comments

Comments
 (0)