Skip to content

Commit 12cb910

Browse files
committed
New IGate "SATGATE" option to delay packets heard directly.
modified: CHANGES.md modified: audio.h modified: ax25_pad.c modified: ax25_pad.h modified: config.c modified: direwolf.c modified: doc/User-Guide.pdf modified: igate.c modified: igate.h
1 parent 87d9fe0 commit 12cb910

9 files changed

+320
-13
lines changed

CHANGES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@
33

44
----------
55

6+
## Version 1.3 -- Development snapshot K -- January 2016 ##
7+
8+
### New Feature: ###
9+
10+
- SATgate mode for IGate. Packets heard directly are delayed before being sent
11+
to the Internet Server. This favors digipeated packets because the original
12+
arrives later and gets dropped if there are duplicates.
13+
14+
----------
15+
616
## Version 1.3 -- Development snapshot J -- January 2016 ##
717

818
### Bugs Fixed: ###
919

1020
- AGW network protocol now works properly for big-endian processors
1121
such as PowerPC or MIPS.
1222

13-
- The Mac OSX build procedure is now better about locating the SDK.
23+
- The Mac OSX build procedure is now better about locating the SDK.
1424

1525

1626
----------

audio.h

+6
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,12 @@ struct audio_s {
298298
#define DEFAULT_SPACE_FREQ 2200
299299
#define DEFAULT_BAUD 1200
300300

301+
/* Used for sanity checking in config file and command line options. */
302+
/* 9600 is known to work. */
303+
/* TODO: Is 19200 possible with a soundcard at 44100 samples/sec? */
304+
305+
#define MIN_BAUD 100
306+
#define MAX_BAUD 10000
301307

302308

303309
/*

ax25_pad.c

+41-2
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ int ax25memdebug_seq (packet_t this_p)
219219
*------------------------------------------------------------------------------*/
220220

221221

222-
static packet_t ax25_new (void)
222+
packet_t ax25_new (void)
223223
{
224224
struct packet_s *this_p;
225225

@@ -1630,11 +1630,50 @@ packet_t ax25_get_nextp (packet_t this_p)
16301630
{
16311631
assert (this_p->magic1 == MAGIC);
16321632
assert (this_p->magic2 == MAGIC);
1633-
1633+
16341634
return (this_p->nextp);
16351635
}
16361636

16371637

1638+
/*------------------------------------------------------------------------------
1639+
*
1640+
* Name: ax25_set_release_time
1641+
*
1642+
* Purpose: Set release time
1643+
*
1644+
* Inputs: this_p - Current packet object.
1645+
*
1646+
* release_time - Time as returned by dtime_now().
1647+
*
1648+
*------------------------------------------------------------------------------*/
1649+
1650+
void ax25_set_release_time (packet_t this_p, double release_time)
1651+
{
1652+
assert (this_p->magic1 == MAGIC);
1653+
assert (this_p->magic2 == MAGIC);
1654+
1655+
this_p->release_time = release_time;
1656+
}
1657+
1658+
1659+
1660+
/*------------------------------------------------------------------------------
1661+
*
1662+
* Name: ax25_get_release_time
1663+
*
1664+
* Purpose: Get release time.
1665+
*
1666+
*------------------------------------------------------------------------------*/
1667+
1668+
double ax25_get_release_time (packet_t this_p)
1669+
{
1670+
assert (this_p->magic1 == MAGIC);
1671+
assert (this_p->magic2 == MAGIC);
1672+
1673+
return (this_p->release_time);
1674+
}
1675+
1676+
16381677

16391678
/*------------------------------------------------------------------
16401679
*

ax25_pad.h

+14-1
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,12 @@
7373
struct packet_s {
7474

7575
int magic1; /* for error checking. */
76+
7677
int seq; /* unique sequence number for debugging. */
7778

79+
double release_time; /* Time stamp in format returned by dtime_now(). */
80+
/* When to release from the SATgate mode delay queue. */
81+
7882
#define MAGIC 0x41583235
7983

8084
struct packet_s *nextp; /* Pointer to next in queue. */
@@ -145,6 +149,8 @@ typedef struct packet_s *packet_t;
145149

146150
#ifdef AX25_PAD_C /* Keep this hidden - implementation could change. */
147151

152+
extern packet_t ax25_new (void);
153+
148154
/*
149155
* APRS always has one control octet of 0x03 but the more
150156
* general AX.25 case is one or two control bytes depending on
@@ -273,8 +279,10 @@ typedef struct alevel_s {
273279
} alevel_t;
274280

275281

282+
#ifndef AXTEST
283+
// TODO: remove this?
276284
#define AX25MEMDEBUG 1
277-
285+
#endif
278286

279287

280288
#if AX25MEMDEBUG // to investigate a memory leak problem
@@ -310,6 +318,8 @@ extern void ax25_delete (packet_t pp);
310318
#endif
311319

312320

321+
322+
313323
extern int ax25_parse_addr (int position, char *in_addr, int strict, char *out_addr, int *out_ssid, int *out_heard);
314324
extern int ax25_check_addresses (packet_t pp);
315325

@@ -344,6 +354,9 @@ extern int ax25_get_dti (packet_t this_p);
344354

345355
extern packet_t ax25_get_nextp (packet_t this_p);
346356

357+
extern void ax25_set_release_time (packet_t this_p, double release_time);
358+
extern double ax25_get_release_time (packet_t this_p);
359+
347360
extern void ax25_format_addrs (packet_t pp, char *);
348361

349362
extern int ax25_pack (packet_t pp, unsigned char result[AX25_MAX_PACKET_LEN]);

config.c

+29-1
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
11211121
continue;
11221122
}
11231123
n = atoi(t);
1124-
if (n >= 100 && n <= 10000) {
1124+
if (n >= MIN_BAUD && n <= MAX_BAUD) {
11251125
p_audio_config->achan[channel].baud = n;
11261126
if (n != 300 && n != 1200 && n != 9600) {
11271127
text_color_set(DW_COLOR_ERROR);
@@ -3720,6 +3720,34 @@ void config_init (char *fname, struct audio_s *p_audio_config,
37203720
}
37213721
}
37223722

3723+
/*
3724+
* SATGATE - Special SATgate mode to delay packets heard directly.
3725+
*
3726+
* SATGATE [ n ]
3727+
*/
3728+
3729+
else if (strcasecmp(t, "SATGATE") == 0) {
3730+
3731+
t = split(NULL,0);
3732+
if (t != NULL) {
3733+
3734+
int n = atoi(t);
3735+
if (n >= MIN_SATGATE_DELAY && n <= MAX_SATGATE_DELAY) {
3736+
p_igate_config->satgate_delay = n;
3737+
}
3738+
else {
3739+
p_igate_config->satgate_delay = DEFAULT_SATGATE_DELAY;
3740+
text_color_set(DW_COLOR_ERROR);
3741+
dw_printf ("Line %d: Unreasonable SATgate delay. Using default.\n", line);
3742+
}
3743+
}
3744+
else {
3745+
p_igate_config->satgate_delay = DEFAULT_SATGATE_DELAY;
3746+
}
3747+
}
3748+
3749+
3750+
37233751
/*
37243752
* ==================== All the left overs ====================
37253753
*/

direwolf.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
4-
// Copyright (C) 2011, 2012, 2013, 2014, 2015 John Langner, WB2OSZ
4+
// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016 John Langner, WB2OSZ
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -231,7 +231,7 @@ int main (int argc, char *argv[])
231231
text_color_init(t_opt);
232232
text_color_set(DW_COLOR_INFO);
233233
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
234-
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "J", __DATE__);
234+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "K", __DATE__);
235235
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
236236

237237
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB)

doc/User-Guide.pdf

39 KB
Binary file not shown.

0 commit comments

Comments
 (0)