Skip to content

Commit 78b75e8

Browse files
committed
Merge branch 'pd0mz-ptt-hamlib' into dev
Added hamlib support contributed by pd0mz.
2 parents d6bf810 + 565fa4c commit 78b75e8

11 files changed

+244
-27
lines changed

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33

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

6+
## Version 1.3 -- Development snapshot I -- December 2015 ##
7+
8+
### New Feature: ###
9+
10+
- Added support for hamlib. This will provide more flexible options for PTT control.
11+
12+
----------
13+
614
## Version 1.3 -- Development snapshot H -- December 2015 ##
715

816
### New Feature: ###

Makefile.linux

+5
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,11 @@ LDFLAGS += -lgps
212212
endif
213213

214214

215+
# Uncomment following lines to enable hamlib support.
216+
#CFLAGS += -DUSE_HAMLIB
217+
#LDFLAGS += -lhamlib
218+
219+
215220
# Name of current directory.
216221
# Used to generate zip file name for distribution.
217222

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,12 @@ Version 1.2 decodes more than 1000 error-free frames from [WA8LMF TNC Test CD](h
5151

5252
Go to the [releases page](https://github.com/wb2osz/direwolf/releases). Download a zip file with "win" in its name, unzip it, and run direwolf.exe from a command window.
5353

54-
### Linux - short version for the impatient ###
54+
For more details see the **User Guide** in the [doc directory](https://github.com/wb2osz/direwolf/tree/master/doc).
5555

56-
Download the source, unpack the files and run:
56+
57+
### Linux - Download with web browser ###
58+
59+
Go to the [releases page](https://github.com/wb2osz/direwolf/releases). Chose desired release and download the source as zip or compressed tar file. Unpack the files, with "unzip" or "tar xfz," and then:
5760

5861
cd direwolf-*
5962
make
@@ -62,7 +65,19 @@ Download the source, unpack the files and run:
6265

6366
For more details see the **User Guide** in the [doc directory](https://github.com/wb2osz/direwolf/tree/master/doc). Special considerations for the Raspberry Pi are found in **Raspberry-Pi-APRS.pdf**
6467

65-
Use of "git clone" is not recommended at this time because there could be some inconsistencies during the transition from the old site.
68+
### Linux - Using git clone ###
69+
70+
cd ~
71+
git clone https://www.github.com/wb2osz/direwolf
72+
cd direwolf
73+
git checkout 1.2
74+
make
75+
sudo make install
76+
make install-conf
77+
78+
The "git checkout 1.2" is necessary to get the most recent stable release. The tip of the master branch is temporarily in an inconsistent state during the transition from the old website. If you want the latest (unstable) development version, use "git checkout dev" instead.
79+
80+
For more details see the **User Guide** in the [doc directory](https://github.com/wb2osz/direwolf/tree/master/doc). Special considerations for the Raspberry Pi are found in **Raspberry-Pi-APRS.pdf**
6681

6782
## Join the conversation ##
6883

@@ -72,6 +87,8 @@ Here are some good places to share information:
7287

7388
- [Raspberry Pi 4 Ham Radio](https://groups.yahoo.com/neo/groups/Raspberry_Pi_4-Ham_RADIO/info)
7489

90+
- [linuxham](https://groups.yahoo.com/neo/groups/linuxham/info)
91+
7592
- [TAPR aprssig](http://www.tapr.org/pipermail/aprssig/)
7693

7794

audio.h

+18-5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
#ifndef AUDIO_H
1313
#define AUDIO_H 1
1414

15+
#ifdef USE_HAMLIB
16+
#include <hamlib/rig.h>
17+
#endif
18+
1519
#include "direwolf.h" /* for MAX_CHANS used throughout the application. */
1620
#include "ax25_pad.h" /* for AX25_MAX_ADDR_LEN */
1721

@@ -25,7 +29,8 @@ enum ptt_method_e {
2529
PTT_METHOD_NONE, /* VOX or no transmit. */
2630
PTT_METHOD_SERIAL, /* Serial port RTS or DTR. */
2731
PTT_METHOD_GPIO, /* General purpose I/O, Linux only. */
28-
PTT_METHOD_LPT }; /* Parallel printer port, Linux only. */
32+
PTT_METHOD_LPT, /* Parallel printer port, Linux only. */
33+
PTT_METHOD_HAMLIB }; /* HAMLib, Linux only. */
2934

3035
typedef enum ptt_method_e ptt_method_t;
3136

@@ -168,13 +173,13 @@ struct audio_s {
168173

169174
#define OCTYPE_PTT 0
170175
#define OCTYPE_DCD 1
171-
#define OCTYPE_FUTURE 2
176+
#define OCTYPE_FUTURE 2
172177

173-
#define NUM_OCTYPES 3 /* number of values above */
178+
#define NUM_OCTYPES 4 /* number of values above */
174179

175180
struct {
176181

177-
ptt_method_t ptt_method; /* none, serial port, GPIO, LPT. */
182+
ptt_method_t ptt_method; /* none, serial port, GPIO, LPT, HAMLIB. */
178183

179184
char ptt_device[20]; /* Serial device name for PTT. e.g. COM1 or /dev/ttyS0 */
180185

@@ -189,6 +194,10 @@ struct audio_s {
189194
int ptt_invert; /* Invert the output. */
190195
int ptt_invert2; /* Invert the secondary output. */
191196

197+
#ifdef USE_HAMLIB
198+
int ptt_rig; /* HAMLib rig. */
199+
#endif
200+
192201
} octrl[NUM_OCTYPES];
193202

194203
#define ICTYPE_TXINH 0
@@ -227,6 +236,11 @@ struct audio_s {
227236

228237
} achan[MAX_CHANS];
229238

239+
#ifdef USE_HAMLIB
240+
int rigs; /* Total number of configured rigs */
241+
RIG *rig[MAX_RIGS]; /* HAMLib rig instances */
242+
#endif
243+
230244
};
231245

232246

@@ -302,7 +316,6 @@ struct audio_s {
302316
* Use one or the other depending on the platform.
303317
*/
304318

305-
306319
int audio_open (struct audio_s *pa);
307320

308321
int audio_get (int a); /* a = audio device, 0 for first */

config.c

+102
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@
4646
#include <gps.h> /* for DEFAULT_GPSD_PORT (2947) */
4747
#endif
4848

49+
#ifdef USE_HAMLIB
50+
#include <hamlib/rig.h>
51+
#endif
52+
4953
#include "ax25_pad.h"
5054
#include "textcolor.h"
5155
#include "audio.h"
@@ -608,6 +612,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
608612
int adevice;
609613
int m;
610614

615+
#if USE_HAMLIB
616+
RIG *rig;
617+
int rigs = 0;
618+
#endif
619+
620+
611621
#if DEBUG
612622
text_color_set(DW_COLOR_DEBUG);
613623
dw_printf ("config_init ( %s )\n", fname);
@@ -1531,6 +1541,24 @@ void config_init (char *fname, struct audio_s *p_audio_config,
15311541
text_color_set(DW_COLOR_ERROR);
15321542
dw_printf ("Config file line %d: %s with LPT is only available on x86 Linux.\n", line, otname);
15331543
#endif
1544+
}
1545+
else if (strcasecmp(t, "RIG") == 0) {
1546+
#ifdef USE_HAMLIB
1547+
p_audio_config->achan[channel].octrl[ot].ptt_method = PTT_METHOD_HAMLIB;
1548+
1549+
t = strtok (NULL, " ,\t\n\r");
1550+
if (t == NULL) {
1551+
text_color_set(DW_COLOR_ERROR);
1552+
dw_printf ("Config file line %d: Missing RIG number.\n", line);
1553+
continue;
1554+
}
1555+
1556+
p_audio_config->achan[channel].octrl[ot].ptt_rig = atoi(t);
1557+
1558+
#else
1559+
text_color_set(DW_COLOR_ERROR);
1560+
dw_printf ("Config file line %d: %s with RIG is only available when hamlib support is enabled.\n", line, otname);
1561+
#endif
15341562
}
15351563
else {
15361564

@@ -1663,6 +1691,80 @@ void config_init (char *fname, struct audio_s *p_audio_config,
16631691
}
16641692
}
16651693

1694+
/*
1695+
* RIG - HAMLib rig configuration.
1696+
*
1697+
* xxx port model
1698+
*
1699+
* For example a Yeasu FT-817 on /dev/ttyUSB0:
1700+
* RIG /dev/ttyUSB0 120
1701+
*
1702+
* For example rigctld on localhost:
1703+
* RIG 127.0.0.1:4532 2
1704+
*/
1705+
1706+
else if (strcasecmp(t, "RIG") == 0) {
1707+
#ifdef USE_HAMLIB
1708+
int n;
1709+
hamlib_port_t port;
1710+
rig_model_t rig_model;
1711+
1712+
if (rigs == MAX_RIGS) {
1713+
text_color_set(DW_COLOR_ERROR);
1714+
dw_printf ("Config file line %d: Maximum number of rigs reached.\n", line);
1715+
continue;
1716+
}
1717+
1718+
t = strtok (NULL, " ,\t\n\r");
1719+
if (t == NULL) {
1720+
text_color_set(DW_COLOR_ERROR);
1721+
dw_printf ("Config file line %d: Missing port, model[, key=value].\n",
1722+
line);
1723+
continue;
1724+
}
1725+
1726+
strncpy (port.pathname, t, FILPATHLEN - 1);
1727+
1728+
t = strtok (NULL, " ,\t\n\r");
1729+
if (t == NULL) {
1730+
text_color_set(DW_COLOR_ERROR);
1731+
dw_printf ("Config file line %d: Missing model[, key=value]\n", line);
1732+
continue;
1733+
}
1734+
1735+
if (strcasecmp(t, "AUTO") == 0) {
1736+
rig_load_all_backends();
1737+
rig_model = rig_probe(&port);
1738+
}
1739+
else {
1740+
rig_model = atoi(t);
1741+
}
1742+
1743+
rig = rig_init(rig_model);
1744+
if (!rig) {
1745+
text_color_set(DW_COLOR_ERROR);
1746+
dw_printf ("Config file line %d: Unknown rig %d, please check riglist.h.\n", line, rig_model);
1747+
continue;
1748+
}
1749+
1750+
strncpy (rig->state.rigport.pathname, port.pathname, FILPATHLEN - 1);
1751+
n = rig_open(rig);
1752+
if (n != RIG_OK) {
1753+
text_color_set(DW_COLOR_ERROR);
1754+
dw_printf ("Config file line %d: Rig open error %d: %s\n", line, n, rigerror(n));
1755+
continue;
1756+
}
1757+
1758+
p_audio_config->rig[rigs++] = rig;
1759+
p_audio_config->rigs = rigs;
1760+
1761+
#else
1762+
text_color_set(DW_COLOR_ERROR);
1763+
dw_printf ("Config file line %d: RIG is only available when hamlib support is enabled.\n", line);
1764+
continue;
1765+
#endif
1766+
}
1767+
16661768
/*
16671769
* DWAIT - Extra delay for receiver squelch.
16681770
*/

demod_afsk.c

+1-14
Original file line numberDiff line numberDiff line change
@@ -104,25 +104,12 @@ static inline float convolve (const float *__restrict__ data, const float *__res
104104
float sum = 0.0f;
105105
int j;
106106

107-
#if 0
108-
// As suggested here, http://locklessinc.com/articles/vectorize/
109-
// Unfortunately, older compilers don't recognize it.
110-
111-
// Get more information by using -ftree-vectorizer-verbose=5
112107

113-
float *d = __builtin_assume_aligned(data, 16);
114-
float *f = __builtin_assume_aligned(filter, 16);
115-
116-
#pragma GCC ivdep
117-
for (j=0; j<filter_size; j++) {
118-
sum += f[j] * d[j];
119-
}
120-
#else
121108
#pragma GCC ivdep // ignored until gcc 4.9
122109
for (j=0; j<filter_size; j++) {
123110
sum += filter[j] * data[j];
124111
}
125-
#endif
112+
126113
return (sum);
127114
}
128115

direwolf.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,16 @@ 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, "H", __DATE__);
234+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "I", __DATE__);
235235
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
236236

237-
#if defined(ENABLE_GPSD) // later or hamlib ...
237+
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB)
238238
dw_printf ("Includes optional support for: ");
239239
#if defined(ENABLE_GPSD)
240240
dw_printf (" gpsd");
241+
#endif
242+
#if defined(USE_HAMLIB)
243+
dw_printf (" hamlib");
241244
#endif
242245
dw_printf ("\n");
243246
#endif

direwolf.h

+9-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@
3030

3131
#define MAX_CHANS ((MAX_ADEVS) * 2)
3232

33+
/*
34+
* Maximum number of rigs.
35+
*/
36+
37+
#ifdef USE_HAMLIB
38+
#define MAX_RIGS MAX_CHANS
39+
#endif
40+
3341
/*
3442
* Get audio device number for given channel.
3543
* and first channel for given device.
@@ -218,4 +226,4 @@ size_t strlcat_debug(char *__restrict__ dst, const char *__restrict__ src, size_
218226
#endif /* BSD or Apple */
219227

220228

221-
#endif /* ifndef DIREWOLF_H */
229+
#endif /* ifndef DIREWOLF_H */

doc/Raspberry-Pi-APRS.pdf

54.6 KB
Binary file not shown.

doc/User-Guide.pdf

12.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)