1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
/*****************************************************************************/
/*
* sm_hapn4800.c -- soundcard radio modem driver, 4800 baud HAPN modem
*
* Copyright (C) 1996 Thomas Sailer (sailer@ife.ee.ethz.ch)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Please note that the GPL allows you to use the driver, NOT the radio.
* In order to use the radio, you need a license from the communications
* authority of your country.
*
*
* This module implements a (hopefully) HAPN (Hamilton Area Packet
* Network) compatible 4800 baud modem.
* The HAPN modem uses kind of "duobinary signalling" (not really,
* duobinary signalling gives ... 0 0 -1 0 1 0 0 ... at the sampling
* instants, whereas HAPN signalling gives ... 0 0 -1 1 0 0 ..., see
* Proakis, Digital Communications).
* The code is untested. It is compatible with itself (i.e. it can decode
* the packets it sent), but I could not test if it is compatible with
* any "real" HAPN modem, since noone uses it in my region of the world.
* Feedback therefore welcome.
*/
#include "sm.h"
#include "sm_tbl_hapn4800.h"
/* --------------------------------------------------------------------- */
struct demod_state_hapn48 {
unsigned int shreg;
unsigned int bit_pll;
unsigned char last_bit;
unsigned char last_bit2;
unsigned int dcd_shreg;
int dcd_sum0, dcd_sum1, dcd_sum2;
unsigned int dcd_time;
int inphist[5];
int lvlhi, lvllo;
};
struct mod_state_hapn48 {
unsigned int shreg;
unsigned char tx_bit;
};
/* --------------------------------------------------------------------- */
static void modulator_hapn4800_10(struct sm_state *sm, unsigned char *buf, int buflen)
{
struct mod_state_hapn48 *st = (struct mod_state_hapn48 *)(&sm->m);
int j;
const unsigned char *cp;
for (; buflen >= 10; buflen -= 10) {
if (st->shreg <= 1)
st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;
st->tx_bit = ((st->tx_bit << 1) |
(st->tx_bit & 1));
st->tx_bit ^= (!(st->shreg & 1));
st->shreg >>= 1;
cp = hapn48_txfilt_10 + (st->tx_bit & 0xf);
for (j = 0; j < 10; j++, cp += 0x10)
*buf++ = *cp;
}
}
/* --------------------------------------------------------------------- */
static void modulator_hapn4800_8(struct sm_state *sm, unsigned char *buf, int buflen)
{
struct mod_state_hapn48 *st = (struct mod_state_hapn48 *)(&sm->m);
int j;
const unsigned char *cp;
for (; buflen >= 8; buflen -= 8) {
if (st->shreg <= 1)
st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;
st->tx_bit = (st->tx_bit << 1) | (st->tx_bit & 1);
st->tx_bit ^= !(st->shreg & 1);
st->shreg >>= 1;
cp = hapn48_txfilt_8 + (st->tx_bit & 0xf);
for (j = 0; j < 8; j++, cp += 0x10)
*buf++ = *cp;
}
}
/* --------------------------------------------------------------------- */
static void modulator_hapn4800_pm10(struct sm_state *sm, unsigned char *buf, int buflen)
{
struct mod_state_hapn48 *st = (struct mod_state_hapn48 *)(&sm->m);
int j;
const unsigned char *cp;
for (; buflen >= 10; buflen -= 10) {
if (st->shreg <= 1)
st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;
st->tx_bit = ((st->tx_bit << 1) |
(st->tx_bit & 1));
st->tx_bit ^= (!(st->shreg & 1));
st->shreg >>= 1;
cp = hapn48_txfilt_pm10 + (st->tx_bit & 0xf);
for (j = 0; j < 10; j++, cp += 0x10)
*buf++ = *cp;
}
}
/* --------------------------------------------------------------------- */
static void modulator_hapn4800_pm8(struct sm_state *sm, unsigned char *buf, int buflen)
{
struct mod_state_hapn48 *st = (struct mod_state_hapn48 *)(&sm->m);
int j;
const unsigned char *cp;
for (; buflen >= 8; buflen -= 8) {
if (st->shreg <= 1)
st->shreg = hdlcdrv_getbits(&sm->hdrv) | 0x10000;
st->tx_bit = (st->tx_bit << 1) | (st->tx_bit & 1);
st->tx_bit ^= !(st->shreg & 1);
st->shreg >>= 1;
cp = hapn48_txfilt_pm8 + (st->tx_bit & 0xf);
for (j = 0; j < 8; j++, cp += 0x10)
*buf++ = *cp;
}
}
/* --------------------------------------------------------------------- */
static void demodulator_hapn4800_10(struct sm_state *sm, unsigned char *buf, int buflen)
{
struct demod_state_hapn48 *st = (struct demod_state_hapn48 *)(&sm->d);
static const int pll_corr[2] = { -0x800, 0x800 };
int curst, cursync;
for (; buflen > 0; buflen--, buf++) {
st->inphist[4] = st->inphist[3];
st->inphist[3] = st->inphist[2];
st->inphist[2] = st->inphist[1];
st->inphist[1] = st->inphist[0];
st->inphist[0] = ((int)(*buf)-0x80) << 8;
st->lvlhi = (st->lvlhi * 65309) >> 16; /* decay */
st->lvllo = (st->lvllo * 65309) >> 16; /* decay */
if (st->inphist[2] > st->lvlhi)
st->lvlhi = st->inphist[2];
if (st->inphist[2] < st->lvllo)
st->lvllo = st->inphist[2];
if (buflen & 1)
st->dcd_shreg <<= 1;
st->bit_pll += 0x199a;
curst = cursync = 0;
if (st->inphist[2] > st->lvlhi >> 1) {
curst = 1;
cursync = (st->inphist[2] > st->inphist[1] &&
st->inphist[2] > st->inphist[3] &&
st->inphist[2] > st->inphist[0] &&
st->inphist[2] > st->inphist[4]);
} else if (st->inphist[2] < st->lvllo >> 1) {
curst = -1;
cursync = (st->inphist[2] < st->inphist[1] &&
st->inphist[2] < st->inphist[3] &&
st->inphist[2] < st->inphist[0] &&
st->inphist[2] < st->inphist[4]);
}
if (cursync) {
st->dcd_shreg |= cursync;
st->bit_pll += pll_corr[((st->bit_pll - 0x8000u) & 0xffffu) < 0x8ccdu];
st->dcd_sum0 += 16 * hweight32(st->dcd_shreg & 0x18c6318c) -
hweight32(st->dcd_shreg & 0xe739ce70);
}
hdlcdrv_channelbit(&sm->hdrv, cursync);
if ((--st->dcd_time) <= 0) {
hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 +
st->dcd_sum1 +
st->dcd_sum2) < 0);
st->dcd_sum2 = st->dcd_sum1;
st->dcd_sum1 = st->dcd_sum0;
st->dcd_sum0 = 2; /* slight bias */
st->dcd_time = 240;
}
if (st->bit_pll >= 0x10000) {
st->bit_pll &= 0xffff;
st->last_bit2 = st->last_bit;
if (curst < 0)
st->last_bit = 0;
else if (curst > 0)
st->last_bit = 1;
st->shreg >>= 1;
st->shreg |= ((st->last_bit ^ st->last_bit2 ^ 1) & 1) << 16;
if (st->shreg & 1) {
hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);
st->shreg = 0x10000;
}
diag_trigger(sm);
}
diag_add_one(sm, st->inphist[2]);
}
}
/* --------------------------------------------------------------------- */
static void demodulator_hapn4800_8(struct sm_state *sm, unsigned char *buf, int buflen)
{
struct demod_state_hapn48 *st = (struct demod_state_hapn48 *)(&sm->d);
static const int pll_corr[2] = { -0x800, 0x800 };
int curst, cursync;
for (; buflen > 0; buflen--, buf++) {
st->inphist[4] = st->inphist[3];
st->inphist[3] = st->inphist[2];
st->inphist[2] = st->inphist[1];
st->inphist[1] = st->inphist[0];
st->inphist[0] = ((int)(*buf)-0x80) << 8;
st->lvlhi = (st->lvlhi * 65309) >> 16; /* decay */
st->lvllo = (st->lvllo * 65309) >> 16; /* decay */
if (st->inphist[2] > st->lvlhi)
st->lvlhi = st->inphist[2];
if (st->inphist[2] < st->lvllo)
st->lvllo = st->inphist[2];
if (buflen & 1)
st->dcd_shreg <<= 1;
st->bit_pll += 0x2000;
curst = cursync = 0;
if (st->inphist[2] > st->lvlhi >> 1) {
curst = 1;
cursync = (st->inphist[2] > st->inphist[1] &&
st->inphist[2] > st->inphist[3] &&
st->inphist[2] > st->inphist[0] &&
st->inphist[2] > st->inphist[4]);
} else if (st->inphist[2] < st->lvllo >> 1) {
curst = -1;
cursync = (st->inphist[2] < st->inphist[1] &&
st->inphist[2] < st->inphist[3] &&
st->inphist[2] < st->inphist[0] &&
st->inphist[2] < st->inphist[4]);
}
if (cursync) {
st->dcd_shreg |= cursync;
st->bit_pll += pll_corr[((st->bit_pll - 0x8000u) & 0xffffu) < 0x9000u];
st->dcd_sum0 += 16 * hweight32(st->dcd_shreg & 0x44444444) -
hweight32(st->dcd_shreg & 0xbbbbbbbb);
}
hdlcdrv_channelbit(&sm->hdrv, cursync);
if ((--st->dcd_time) <= 0) {
hdlcdrv_setdcd(&sm->hdrv, (st->dcd_sum0 +
st->dcd_sum1 +
st->dcd_sum2) < 0);
st->dcd_sum2 = st->dcd_sum1;
st->dcd_sum1 = st->dcd_sum0;
st->dcd_sum0 = 2; /* slight bias */
st->dcd_time = 240;
}
if (st->bit_pll >= 0x10000) {
st->bit_pll &= 0xffff;
st->last_bit2 = st->last_bit;
if (curst < 0)
st->last_bit = 0;
else if (curst > 0)
st->last_bit = 1;
st->shreg >>= 1;
st->shreg |= ((st->last_bit ^ st->last_bit2 ^ 1) & 1) << 16;
if (st->shreg & 1) {
hdlcdrv_putbits(&sm->hdrv, st->shreg >> 1);
st->shreg = 0x10000;
}
diag_trigger(sm);
}
diag_add_one(sm, st->inphist[2]);
}
}
/* --------------------------------------------------------------------- */
static void demod_init_hapn4800(struct sm_state *sm)
{
struct demod_state_hapn48 *st = (struct demod_state_hapn48 *)(&sm->d);
st->dcd_time = 120;
st->dcd_sum0 = 2;
}
/* --------------------------------------------------------------------- */
const struct modem_tx_info sm_hapn4800_8_tx = {
"hapn4800", sizeof(struct mod_state_hapn48),
38400, 4800, 8, modulator_hapn4800_8, NULL
};
const struct modem_rx_info sm_hapn4800_8_rx = {
"hapn4800", sizeof(struct demod_state_hapn48),
38400, 4800, 8, 8, demodulator_hapn4800_8, demod_init_hapn4800
};
/* --------------------------------------------------------------------- */
const struct modem_tx_info sm_hapn4800_10_tx = {
"hapn4800", sizeof(struct mod_state_hapn48),
48000, 4800, 10,
modulator_hapn4800_10, NULL
};
const struct modem_rx_info sm_hapn4800_10_rx = {
"hapn4800", sizeof(struct demod_state_hapn48),
48000, 4800, 10, 10, demodulator_hapn4800_10, demod_init_hapn4800
};
/* --------------------------------------------------------------------- */
const struct modem_tx_info sm_hapn4800_pm8_tx = {
"hapn4800pm", sizeof(struct mod_state_hapn48),
38400, 4800, 8, modulator_hapn4800_pm8, NULL
};
const struct modem_rx_info sm_hapn4800_pm8_rx = {
"hapn4800pm", sizeof(struct demod_state_hapn48),
38400, 4800, 8, 8, demodulator_hapn4800_8, demod_init_hapn4800
};
/* --------------------------------------------------------------------- */
const struct modem_tx_info sm_hapn4800_pm10_tx = {
"hapn4800pm", sizeof(struct mod_state_hapn48),
48000, 4800, 10,
modulator_hapn4800_pm10, NULL
};
const struct modem_rx_info sm_hapn4800_pm10_rx = {
"hapn4800pm", sizeof(struct demod_state_hapn48),
48000, 4800, 10, 10, demodulator_hapn4800_10, demod_init_hapn4800
};
/* --------------------------------------------------------------------- */
|