Skip to content

Commit 07ea828

Browse files
committed
Assorted minor cleanups.
1 parent 3973627 commit 07ea828

16 files changed

+197
-115
lines changed

README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Why waste $200 and settle for mediocre receive performance from a 1980's technol
99

1010
![](tnc-test-cd-results.png)
1111

12-
Dire Wolf now includes [FX.25](https://en.wikipedia.org/wiki/FX.25_Forward_Error_Correction) which adds Forward Error Correction (FEC) in a way that is completely compatible with existing systems. If both ends are capable of FX.25, your information will continue to get through under conditions where regular AX.25 is completely useless.
12+
Dire Wolf now includes [FX.25](https://en.wikipedia.org/wiki/FX.25_Forward_Error_Correction) which adds Forward Error Correction (FEC) in a way that is completely compatible with existing systems. If both ends are capable of FX.25, your information will continue to get through under conditions where regular AX.25 is completely useless. This was originally developed for satellites and is now seeing widespread use on HF.
1313

1414
![](fx25.png)
1515

@@ -80,7 +80,21 @@ It can also be used as a virtual TNC for other applications such as [APRSIS32](h
8080

8181

8282

83-
- **Standard 300, 1200 & 9600 bps modems and more.**
83+
- **Modems:**
84+
85+
300 bps AFSK for HF
86+
87+
1200 bps AFSK most common for VHF/UHF
88+
89+
2400 & 4800 bps PSK
90+
91+
9600 bps GMSK/G3RUH
92+
93+
AIS reception
94+
95+
EAS SAME reception
96+
97+
8498

8599
- **DTMF ("Touch Tone") Decoding and Encoding.**
86100

conf/generic.conf

+4-3
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,11 @@
369369
%W%
370370
%C%#
371371
%C%# It is sometimes possible to recover frames with a bad FCS.
372-
%C%# This applies to all channels.
372+
%C%# This is not a global setting.
373+
%C%# It applies only the the most recent CHANNEL specified.
373374
%C%#
374-
%C%# 0 [NONE] - Don't try to repair.
375-
%C%# 1 [SINGLE] - Attempt to fix single bit error. (default)
375+
%C%# 0 - Don't try to repair.
376+
%C%# 1 - Attempt to fix single bit error. (default)
376377
%C%# ... see User Guide for more values and in-depth discussion.
377378
%C%#
378379
%C%

src/atest.c

+24-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This file is part of Dire Wolf, an amateur radio packet TNC.
44
//
5-
// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021 John Langner, WB2OSZ
5+
// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021, 2022 John Langner, WB2OSZ
66
//
77
// This program is free software: you can redistribute it and/or modify
88
// it under the terms of the GNU General Public License as published by
@@ -23,11 +23,11 @@
2323
*
2424
* Name: atest.c
2525
*
26-
* Purpose: Test fixture for the AFSK demodulator.
26+
* Purpose: Test fixture for the Dire Wolf demodulators.
2727
*
2828
* Inputs: Takes audio from a .WAV file instead of the audio device.
2929
*
30-
* Description: This can be used to test the AFSK demodulator under
30+
* Description: This can be used to test the demodulators under
3131
* controlled and reproducible conditions for tweaking.
3232
*
3333
* For example
@@ -107,7 +107,7 @@ struct wav_header { /* .WAV file header. */
107107
/* 8 bit samples are unsigned bytes */
108108
/* in range of 0 .. 255. */
109109

110-
/* 16 bit samples are signed short */
110+
/* 16 bit samples are little endian signed short */
111111
/* in range of -32768 .. +32767. */
112112

113113
static struct {
@@ -765,7 +765,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
765765
unsigned char *pinfo;
766766
int info_len;
767767
int h;
768-
char heard[AX25_MAX_ADDR_LEN];
768+
char heard[2 * AX25_MAX_ADDR_LEN + 20];
769769
char alevel_text[AX25_ALEVEL_TO_TEXT_SIZE];
770770

771771
packets_decoded_one++;
@@ -810,6 +810,23 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
810810
}
811811
ax25_alevel_to_text (alevel, alevel_text);
812812

813+
/* As suggested by KJ4ERJ, if we are receiving from */
814+
/* WIDEn-0, it is quite likely (but not guaranteed), that */
815+
/* we are actually hearing the preceding station in the path. */
816+
817+
if (h >= AX25_REPEATER_2 &&
818+
strncmp(heard, "WIDE", 4) == 0 &&
819+
isdigit(heard[4]) &&
820+
heard[5] == '\0') {
821+
822+
char probably_really[AX25_MAX_ADDR_LEN];
823+
ax25_get_addr_with_ssid(pp, h-1, probably_really);
824+
825+
strlcat (heard, " (probably ", sizeof(heard));
826+
strlcat (heard, probably_really, sizeof(heard));
827+
strlcat (heard, ")", sizeof(heard));
828+
}
829+
813830
if (my_audio_config.achan[chan].fix_bits == RETRY_NONE && my_audio_config.achan[chan].passall == 0) {
814831
dw_printf ("%s audio level = %s %s\n", heard, alevel_text, spectrum);
815832
}
@@ -877,7 +894,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
877894

878895

879896

880-
#if 1 // temp experiment TODO: remove this.
897+
#if 0 // temp experiment
881898

882899
#include "decode_aprs.h"
883900
#include "log.h"
@@ -886,7 +903,7 @@ void dlq_rec_frame (int chan, int subchan, int slice, packet_t pp, alevel_t alev
886903

887904
decode_aprs_t A;
888905

889-
decode_aprs (&A, pp, 0, 0);
906+
decode_aprs (&A, pp, 0, NULL);
890907

891908
// Temp experiment to see how different systems set the RR bits in the source and destination.
892909
// log_rr_bits (&A, pp);

src/audio_stats.c

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565

6666
#include "audio_stats.h"
6767
#include "textcolor.h"
68-
#include "dtime_now.h"
6968
#include "demod.h" /* for alevel_t & demod_get_audio_level() */
7069

7170

src/config.c

+3
Original file line numberDiff line numberDiff line change
@@ -2864,6 +2864,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
28642864

28652865
/*
28662866
* CFILTER from-chan to-chan filter_specification_expression
2867+
*
2868+
* Why did I put this here?
2869+
* What would be a useful use case? Perhaps block by source or destination?
28672870
*/
28682871

28692872
else if (strcasecmp(t, "CFILTER") == 0) {

src/decode_aprs.c

+18-9
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,11 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen);
140140
*
141141
* quiet - Suppress error messages.
142142
*
143-
* third_party - True when parsing a third party header.
143+
* third_party_src - Specify when parsing a third party header.
144144
* (decode_aprs is called recursively.)
145145
* This is mostly found when an IGate transmits a message
146146
* that came via APRS-IS.
147+
* NULL when not third party payload.
147148
*
148149
* Outputs: A-> g_symbol_table, g_symbol_code,
149150
* g_lat, g_lon,
@@ -156,11 +157,10 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen);
156157
*
157158
*------------------------------------------------------------------*/
158159

159-
void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
160+
void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_src)
160161
{
161-
//dw_printf ("DEBUG decode_aprs quiet=%d, third_party=%d\n", quiet, third_party);
162+
//dw_printf ("DEBUG decode_aprs quiet=%d, third_party=%p\n", quiet, third_party_src);
162163

163-
//char dest[AX25_MAX_ADDR_LEN];
164164
unsigned char *pinfo;
165165
int info_len;
166166

@@ -229,7 +229,12 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
229229

230230
packet_t pp_payload = ax25_from_text ((char*)pinfo+1, 0);
231231
if (pp_payload != NULL) {
232-
decode_aprs (A, pp_payload, quiet, 1); // 1 means used recursively
232+
char payload_src[AX25_MAX_ADDR_LEN];
233+
memset(payload_src, 0, sizeof(payload_src));
234+
memcpy(payload_src, (char*)pinfo+1, sizeof(payload_src)-1);
235+
char *q = strchr(payload_src, '>');
236+
if (q != NULL) *q = '\0';
237+
decode_aprs (A, pp_payload, quiet, payload_src); // 1 means used recursively
233238
ax25_delete (pp_payload);
234239
return;
235240
}
@@ -243,8 +248,12 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party)
243248
/*
244249
* Extract source and destination including the SSID.
245250
*/
246-
247-
ax25_get_addr_with_ssid (pp, AX25_SOURCE, A->g_src);
251+
if (third_party_src != NULL) {
252+
strlcpy (A->g_src, third_party_src, sizeof(A->g_src));
253+
}
254+
else {
255+
ax25_get_addr_with_ssid (pp, AX25_SOURCE, A->g_src);
256+
}
248257
ax25_get_addr_with_ssid (pp, AX25_DESTINATION, A->g_dest);
249258

250259
//dw_printf ("DEBUG decode_aprs source=%s, dest=%s\n", A->g_src, A->g_dest);
@@ -5176,7 +5185,7 @@ int main (int argc, char *argv[])
51765185
ax25_safe_print ((char *)pinfo, info_len, 1); // Display non-ASCII to hexadecimal.
51775186
dw_printf ("\n");
51785187

5179-
decode_aprs (&A, pp, 0, 0); // Extract information into structure.
5188+
decode_aprs (&A, pp, 0, NULL); // Extract information into structure.
51805189

51815190
decode_aprs_print (&A); // Now print it in human readable format.
51825191

@@ -5197,7 +5206,7 @@ int main (int argc, char *argv[])
51975206
if (pp != NULL) {
51985207
decode_aprs_t A;
51995208

5200-
decode_aprs (&A, pp, 0, 0); // Extract information into structure.
5209+
decode_aprs (&A, pp, 0, NULL); // Extract information into structure.
52015210

52025211
decode_aprs_print (&A); // Now print it in human readable format.
52035212

src/decode_aprs.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ typedef struct decode_aprs_s {
7777
message_subtype_directed_query
7878
} g_message_subtype; /* Various cases of the overloaded "message." */
7979

80-
char g_message_number[8]; /* Message number. Should be 1 - 5 alphanumeric characters if used. */
80+
char g_message_number[12]; /* Message number. Should be 1 - 5 alphanumeric characters if used. */
8181
/* Addendum 1.1 has new format {mm} or {mm}aa with only two */
8282
/* characters for message number and an ack riding piggyback. */
8383

@@ -142,9 +142,9 @@ typedef struct decode_aprs_s {
142142

143143

144144

145-
extern void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, int third_party);
145+
extern void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_src);
146146

147147
extern void decode_aprs_print (decode_aprs_t *A);
148148

149149

150-
#endif
150+
#endif

src/direwolf.c

+16-13
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ void app_process_rec_packet (int chan, int subchan, int slice, packet_t pp, alev
14261426
// we still want to decode it for logging and other processing.
14271427
// Just be quiet about errors if "-qd" is set.
14281428

1429-
decode_aprs (&A, pp, q_d_opt, 0);
1429+
decode_aprs (&A, pp, q_d_opt, NULL);
14301430

14311431
if ( ! q_d_opt ) {
14321432

@@ -1554,10 +1554,14 @@ void app_process_rec_packet (int chan, int subchan, int slice, packet_t pp, alev
15541554
}
15551555
else {
15561556

1557-
/* Send to Internet server if option is enabled. */
1558-
/* Consider only those with correct CRC. */
1559-
1560-
if (ax25_is_aprs(pp) && retries == RETRY_NONE) {
1557+
/*
1558+
* Send to the IGate processing.
1559+
* Use only those with correct CRC; We don't want to spread corrupted data!
1560+
* Our earlier "fix bits" hack could allow corrupted information to get thru.
1561+
* However, if it used FEC mode (FX.25. IL2P), we have much higher level of
1562+
* confidence that it is correct.
1563+
*/
1564+
if (ax25_is_aprs(pp) && ( retries == RETRY_NONE || is_fx25) ) {
15611565

15621566
igate_send_rec_packet (chan, pp);
15631567
}
@@ -1572,24 +1576,23 @@ void app_process_rec_packet (int chan, int subchan, int slice, packet_t pp, alev
15721576

15731577

15741578
/*
1575-
* APRS digipeater.
1579+
* Send to APRS digipeater.
15761580
* Use only those with correct CRC; We don't want to spread corrupted data!
1581+
* Our earlier "fix bits" hack could allow corrupted information to get thru.
1582+
* However, if it used FEC mode (FX.25. IL2P), we have much higher level of
1583+
* confidence that it is correct.
15771584
*/
1578-
1579-
// TODO: Should also use anything received with FX.25 because it is known to be good.
1580-
// Our earlier "fix bits" hack could allow corrupted information to get thru.
1581-
1582-
if (ax25_is_aprs(pp) && retries == RETRY_NONE) {
1585+
if (ax25_is_aprs(pp) && ( retries == RETRY_NONE || is_fx25) ) {
15831586

15841587
digipeater (chan, pp);
15851588
}
15861589

15871590
/*
15881591
* Connected mode digipeater.
1589-
* Use only those with correct CRC.
1592+
* Use only those with correct CRC (or using FEC.)
15901593
*/
15911594

1592-
if (retries == RETRY_NONE) {
1595+
if (retries == RETRY_NONE || is_fx25) {
15931596

15941597
cdigipeater (chan, pp);
15951598
}

0 commit comments

Comments
 (0)