Skip to content

Commit 2434e5f

Browse files
committed
Minor cleanups.
1 parent dfc063f commit 2434e5f

File tree

7 files changed

+19
-30
lines changed

7 files changed

+19
-30
lines changed

src/config.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -5775,8 +5775,9 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
57755775
else if (strcasecmp(keyword, "POWER") == 0) {
57765776
b->power = atoi(value);
57775777
}
5778-
else if (strcasecmp(keyword, "HEIGHT") == 0) {
5778+
else if (strcasecmp(keyword, "HEIGHT") == 0) { // This is in feet.
57795779
b->height = atoi(value);
5780+
// TODO: ability to add units suffix, e.g. 10m
57805781
}
57815782
else if (strcasecmp(keyword, "GAIN") == 0) {
57825783
b->gain = atoi(value);

src/direwolf.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,8 @@ int main (int argc, char *argv[])
300300

301301
text_color_init(t_opt);
302302
text_color_set(DW_COLOR_INFO);
303-
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
304-
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
303+
dw_printf ("Dire Wolf version %d.%d (%s) BETA TEST 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
304+
//dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
305305
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
306306

307307

@@ -387,7 +387,7 @@ int main (int argc, char *argv[])
387387
dw_printf ("\n");
388388
dw_printf ("Dire Wolf requires only privileges available to ordinary users.\n");
389389
dw_printf ("Running this as root is an unnecessary security risk.\n");
390-
SLEEP_SEC(1);
390+
//SLEEP_SEC(1);
391391
}
392392
}
393393
#endif

src/igate.c

-22
Original file line numberDiff line numberDiff line change
@@ -1749,7 +1749,6 @@ static void * satgate_delay_thread (void *arg)
17491749
*
17501750
*--------------------------------------------------------------------*/
17511751

1752-
#warning - clean up
17531752

17541753
// It is unforunate that the : data type indicator (DTI) was overloaded with
17551754
// so many different meanings. Simply looking at the DTI is not adequate for
@@ -1825,9 +1824,6 @@ static void maybe_xmit_packet_from_igate (char *message, int to_chan)
18251824
*gt = '\0';
18261825
}
18271826

1828-
// FIXME NO!
1829-
///////ax25_get_addr_with_ssid (pp3, AX25_SOURCE, src);
1830-
18311827
/*
18321828
* Drop if path contains:
18331829
* NOGATE or RFONLY - means IGate should not pass them.
@@ -2472,24 +2468,6 @@ void ig_to_tx_remember (packet_t pp, int chan, int bydigi)
24722468
}
24732469

24742470

2475-
#warning remove
2476-
2477-
static int is_message_overload (char *infop)
2478-
{
2479-
if (*infop != ':') return (0);
2480-
if (strlen(infop) < 16) return (0);
2481-
if (strncmp(infop+10, ":PARM.", 6) == 0) return (1);
2482-
if (strncmp(infop+10, ":UNIT.", 6) == 0) return (1);
2483-
if (strncmp(infop+10, ":EQNS.", 6) == 0) return (1);
2484-
if (strncmp(infop+10, ":BITS.", 6) == 0) return (1);
2485-
if (strncmp(infop+1, "BLN", 3) == 0) return (1);
2486-
if (strncmp(infop+1, "NWS", 3) == 0) return (1);
2487-
if (strncmp(infop+1, "SKY", 3) == 0) return (1);
2488-
if (strncmp(infop+1, "CWA", 3) == 0) return (1);
2489-
if (strncmp(infop+1, "BOM", 3) == 0) return (1);
2490-
return (0);
2491-
}
2492-
24932471

24942472
static int ig_to_tx_allow (packet_t pp, int chan)
24952473
{

src/log.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ void log_write (int chan, decode_aprs_t *A, packet_t pp, alevel_t alevel, retry_
224224

225225
now = time(NULL); // Get current time.
226226
(void)gmtime_r (&now, &tm);
227-
227+
// FIXME: https://github.com/wb2osz/direwolf/issues/473
228228

229229
if (g_daily_names) {
230230

src/pfilter.c

+5
Original file line numberDiff line numberDiff line change
@@ -1303,6 +1303,11 @@ static int filt_s (pfstate_t *pf)
13031303
* what they are for other digipeaters.
13041304
* I think the best solution is to simply ignore the hop count.
13051305
*
1306+
* Release 1.7: I got overly ambitious and now realize this is just giving people too much
1307+
* "rope to hang themselves," drop messages unexpectedly, and accidentally break messaging.
1308+
* Change documentation to mention only the time limit.
1309+
* The other functionality will be undocumented and maybe disappear over time.
1310+
*
13061311
*------------------------------------------------------------------------------*/
13071312

13081313
static int filt_i (pfstate_t *pf)

src/recv.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ static void * recv_adev_thread (void *arg)
207207
int eof;
208208

209209
/* This audio device can have one (mono) or two (stereo) channels. */
210-
/* Find number of the first channel. */
210+
/* Find number of the first channel and number of channels. */
211211

212212
int first_chan = ADEVFIRSTCHAN(a);
213213
int num_chan = save_pa->adev[a].num_channels;
@@ -234,6 +234,8 @@ static void * recv_adev_thread (void *arg)
234234
if (audio_sample >= 256 * 256)
235235
eof = 1;
236236

237+
// Future? provide more flexible mapping.
238+
// i.e. for each valid channel where audio_source[] is first_chan+c.
237239
multi_modem_process_sample(first_chan + c, audio_sample);
238240

239241

@@ -262,14 +264,14 @@ static void * recv_adev_thread (void *arg)
262264
aprs_tt_button (first_chan + c, tt);
263265
}
264266
}
265-
}
267+
} // for c is just 0 or 0 then 1
266268

267269
/* When a complete frame is accumulated, */
268270
/* dlq_rec_frame, is called. */
269271

270272
/* recv_process, below, drains the queue. */
271273

272-
}
274+
} // while !eof on audio stream
273275

274276
// What should we do now?
275277
// Seimply terminate the application?

systemd/direwolf.service

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[Unit]
22
Description=Direwolf Sound Card-based AX.25 TNC
33
After=sound.target
4+
After=network.target
45

56
[Service]
67
EnvironmentFile=/etc/sysconfig/direwolf
@@ -22,3 +23,5 @@ ReadWritePaths=/var/log/direwolf
2223
[Install]
2324
WantedBy=multi-user.target
2425
DefaultInstance=1
26+
27+
# alternate version: https://www.f4fxl.org/start-direwolf-at-boot-the-systemd-way/

0 commit comments

Comments
 (0)