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
|
/*---------------------------------------------------------------------------*\
FILE........: cohpsk_demod.c
AUTHOR......: David Rowe
DATE CREATED: April 6 2015
Given an input file of raw file (8kHz, 16 bit shorts) of COHPSK modem samples,
outputs a file of bits (note one bit per int, not compressed).
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2015 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. 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 Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <errno.h>
#include <getopt.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "codec2_cohpsk.h"
#include "codec2_fdmdv.h"
#include "cohpsk_defs.h"
#include "cohpsk_internal.h"
#include "debug_alloc.h"
#include "octave.h"
#define LOG_FRAMES 100
#define SYNC_FRAMES \
12 /* sync state uses up extra log storage as we reprocess several times */
int opt_exists(char *argv[], int argc, char opt[]) {
int i;
for (i = 0; i < argc; i++) {
if (strcmp(argv[i], opt) == 0) {
return i;
}
}
return 0;
}
int main(int argc, char *argv[]) {
FILE *fin, *fout, *foct;
struct COHPSK *cohpsk;
float rx_bits[COHPSK_BITS_PER_FRAME];
char rx_bits_char[COHPSK_BITS_PER_FRAME];
double rx_bits_double[COHPSK_BITS_PER_FRAME];
COMP rx_fdm[COHPSK_MAX_SAMPLES_PER_FRAME];
short rx_fdm_scaled[COHPSK_MAX_SAMPLES_PER_FRAME];
int frames, sync, nin_frame;
float *rx_amp_log = NULL;
float *rx_phi_log = NULL;
COMP *rx_symb_log = NULL;
float f_est_log[LOG_FRAMES], ratio_log[LOG_FRAMES];
int i, r, c, log_data_r, oct, logframes, diversity, sd;
foct = NULL;
oct = 0;
diversity = 1;
sd = 0;
int verbose = 0;
int o = 0;
int opt_idx = 0;
while (o != -1) {
static struct option long_opts[] = {
{"help", no_argument, 0, 'h'}, {"octave", required_argument, 0, 'o'},
{"nd", no_argument, 0, 'n'}, {"sd", no_argument, 0, 's'},
{"verbose", no_argument, 0, 'v'}, {0, 0, 0, 0}};
o = getopt_long(argc, argv, "ho:nsv", long_opts, &opt_idx);
switch (o) {
case 'o':
if ((foct = fopen(optarg, "wt")) == NULL) {
fprintf(stderr, "Error opening output Octave file: %s: %s.\n", optarg,
strerror(errno));
exit(1);
}
fprintf(stderr, "opened: %s\n", optarg);
oct = 1;
break;
case 'n':
diversity = 2;
break;
case 's':
sd = 1;
break;
case 'v':
verbose = 1;
break;
case 'h':
case '?':
goto helpmsg;
break;
}
}
int dx = optind;
if ((argc - dx) < 2) {
fprintf(stderr, "Too few arguments\n");
helpmsg:
printf("usage: %s [options] InputModemRawFile OutputFile \n", argv[0]);
fprintf(stderr, "\n");
fprintf(
stderr,
" Default output file format is one byte per bit\n");
fprintf(stderr, " -o OctaveLogFile Octave log file for testing\n");
fprintf(
stderr,
" --nd non-diversity mode, output frames of %d bits\n",
COHPSK_ND * COHPSK_BITS_PER_FRAME);
fprintf(
stderr,
" --sd soft decision output, one double per symbol\n");
fprintf(stderr, " -v verbose mode\n");
fprintf(stderr, "\n");
exit(1);
}
if (strcmp(argv[dx], "-") == 0)
fin = stdin;
else if ((fin = fopen(argv[dx], "rb")) == NULL) {
fprintf(stderr, "Error opening input modem sample file: %s: %s.\n", argv[1],
strerror(errno));
exit(1);
}
if (strcmp(argv[dx + 1], "-") == 0)
fout = stdout;
else if ((fout = fopen(argv[dx + 1], "wb")) == NULL) {
fprintf(stderr, "Error opening output file: %s: %s.\n", argv[2],
strerror(errno));
exit(1);
}
cohpsk = cohpsk_create();
cohpsk_set_verbose(cohpsk, verbose);
if (oct) {
logframes = LOG_FRAMES;
rx_amp_log = (float *)MALLOC(sizeof(float) * logframes * NSYMROW *
COHPSK_NC * COHPSK_ND);
assert(rx_amp_log != NULL);
rx_phi_log = (float *)MALLOC(sizeof(float) * logframes * NSYMROW *
COHPSK_NC * COHPSK_ND);
assert(rx_phi_log != NULL);
rx_symb_log = (COMP *)MALLOC(sizeof(COMP) * logframes * NSYMROW *
COHPSK_NC * COHPSK_ND);
assert(rx_symb_log != NULL);
cohpsk->rx_timing_log =
(float *)MALLOC(sizeof(float) * SYNC_FRAMES * logframes * NSYMROWPILOT);
assert(cohpsk->rx_timing_log != NULL);
}
log_data_r = 0;
frames = 0;
nin_frame = COHPSK_NOM_SAMPLES_PER_FRAME;
while (fread(rx_fdm_scaled, sizeof(short), nin_frame, fin) == nin_frame) {
frames++;
cohpsk_set_frame(cohpsk, frames);
/* scale and demod */
for (i = 0; i < nin_frame; i++) {
rx_fdm[i].real = rx_fdm_scaled[i] / COHPSK_SCALE;
rx_fdm[i].imag = 0.0;
}
cohpsk_demod(cohpsk, rx_bits, &sync, rx_fdm, &nin_frame);
if (sync) {
if (diversity == 1) {
if (sd == 0) {
for (i = 0; i < COHPSK_BITS_PER_FRAME; i++)
rx_bits_char[i] = rx_bits[i] < 0.0;
fwrite(rx_bits_char, sizeof(char), COHPSK_BITS_PER_FRAME, fout);
} else {
for (i = 0; i < COHPSK_BITS_PER_FRAME; i++)
rx_bits_double[i] = rx_bits[i];
fwrite(rx_bits_double, sizeof(double), COHPSK_BITS_PER_FRAME, fout);
}
} else {
if (sd == 0) {
for (i = 0; i < COHPSK_BITS_PER_FRAME; i++)
rx_bits_char[i] = cohpsk->rx_bits_lower[i] < 0.0;
fwrite(rx_bits_char, sizeof(char), COHPSK_BITS_PER_FRAME, fout);
for (i = 0; i < COHPSK_BITS_PER_FRAME; i++)
rx_bits_char[i] = cohpsk->rx_bits_upper[i] < 0.0;
fwrite(rx_bits_char, sizeof(char), COHPSK_BITS_PER_FRAME, fout);
} else {
for (i = 0; i < COHPSK_BITS_PER_FRAME; i++)
rx_bits_double[i] = cohpsk->rx_bits_lower[i];
fwrite(rx_bits_double, sizeof(double), COHPSK_BITS_PER_FRAME, fout);
for (i = 0; i < COHPSK_BITS_PER_FRAME; i++)
rx_bits_double[i] = cohpsk->rx_bits_upper[i];
fwrite(rx_bits_double, sizeof(double), COHPSK_BITS_PER_FRAME, fout);
}
}
if (oct) {
for (r = 0; r < NSYMROW; r++, log_data_r++) {
for (c = 0; c < COHPSK_NC * COHPSK_ND; c++) {
rx_amp_log[log_data_r * COHPSK_NC * COHPSK_ND + c] =
cohpsk->amp_[r][c];
rx_phi_log[log_data_r * COHPSK_NC * COHPSK_ND + c] =
cohpsk->phi_[r][c];
rx_symb_log[log_data_r * COHPSK_NC * COHPSK_ND + c] =
cohpsk->rx_symb[r][c];
}
}
f_est_log[frames - 1] = cohpsk->f_est;
ratio_log[frames - 1] = cohpsk->ratio;
// fprintf(stderr,"ratio: %f\n", cohpsk->ratio);
// printf("frames: %d log_data_r: %d\n", frames, log_data_r);
if (frames == logframes) oct = 0;
}
}
/* if this is in a pipeline, we probably don't want the usual
buffering to occur */
if (fout == stdout) fflush(stdout);
}
fclose(fin);
fclose(fout);
/* optionally dump Octave files */
if (foct != NULL) {
octave_save_float(foct, "rx_amp_log_c", (float *)rx_amp_log, log_data_r,
COHPSK_NC * COHPSK_ND, COHPSK_NC * COHPSK_ND);
octave_save_float(foct, "rx_phi_log_c", (float *)rx_phi_log, log_data_r,
COHPSK_NC * COHPSK_ND, COHPSK_NC * COHPSK_ND);
octave_save_complex(foct, "rx_symb_log_c", (COMP *)rx_symb_log, log_data_r,
COHPSK_NC * COHPSK_ND, COHPSK_NC * COHPSK_ND);
octave_save_float(foct, "rx_timing_log_c", (float *)cohpsk->rx_timing_log,
1, cohpsk->rx_timing_log_index,
cohpsk->rx_timing_log_index);
octave_save_float(foct, "f_est_log_c", f_est_log, 1, logframes, logframes);
octave_save_float(foct, "ratio_log_c", ratio_log, 1, logframes, logframes);
fclose(foct);
}
cohpsk_destroy(cohpsk);
return 0;
}
|