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
|
/* -*- c++ -*- */
/*
* Copyright 2009,2012 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* GNU Radio 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 3, or (at your option)
* any later version.
*
* GNU Radio 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 GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "hrpt_decoder_impl.h"
#include <gnuradio/noaa/hrpt.h>
#include <gnuradio/io_signature.h>
#include <cstdio>
namespace gr {
namespace noaa {
static const char *hrpt_ids[] = {
"000000",
"NOAA11",
"000002",
"NOAA16",
"000004",
"000005",
"000006",
"NOAA15",
"000008",
"NOAA12",
"000010",
"NOAA17",
"000012",
"NOAA18",
"000014",
"NOAA19"
};
hrpt_decoder::sptr
hrpt_decoder::make(bool verbose, bool output_files)
{
return gnuradio::get_initial_sptr
(new hrpt_decoder_impl(verbose, output_files));
}
hrpt_decoder_impl::hrpt_decoder_impl(bool verbose, bool output_files)
: sync_block("noaa_hrpt_decoder",
io_signature::make(1, 1, sizeof(short)),
io_signature::make(0, 0, 0)),
d_verbose(verbose),
d_output_files(output_files),
d_word_num(0),
d_frames_seen(0),
d_current_mfnum(0),
d_expected_mfnum(0),
d_seq_errs(0),
d_address(0),
d_day_of_year(0),
d_milliseconds(0),
d_last_time(0)
{
// Start of capture processing here
}
hrpt_decoder_impl::~hrpt_decoder_impl()
{
// End of capture processing here
if(d_verbose) {
fprintf(stderr, "Frames seen: %10i\n", d_frames_seen);
fprintf(stderr, "Sequence errors: %10i\n", d_seq_errs);
}
}
int
hrpt_decoder_impl::work(int noutput_items,
gr_vector_const_void_star &input_items,
gr_vector_void_star &output_items)
{
const unsigned short *in = (const unsigned short*)input_items[0];
int i = 0;
while(i < noutput_items) {
d_current_word = in[i++] & 0x3FF;
d_word_num++;
// Per HRPT word processing here
switch(d_word_num) {
case 7:
process_mfnum();
process_address();
break;
case 9:
process_day_of_year();
break;
case 10:
process_milli1();
break;
case 11:
process_milli2();
break;
case 12:
process_milli3();
break;
default:
break;
}
if(d_word_num == HRPT_MINOR_FRAME_WORDS) {
// End of minor frame processing here
d_frames_seen++;
d_word_num = 0;
fprintf(stderr, "\n");
}
}
return i;
}
void
hrpt_decoder_impl::process_mfnum()
{
d_current_mfnum = (d_current_word & 0x180) >> 7;
if(d_verbose)
fprintf(stderr, "MF:");
if(d_current_mfnum != d_expected_mfnum && d_frames_seen > 0) {
d_seq_errs++;
if(d_verbose)
fprintf(stderr, "*");
}
else
if(d_verbose)
fprintf(stderr, " ");
if(d_verbose)
fprintf(stderr, "%i ", d_current_mfnum);
d_expected_mfnum = (d_current_mfnum == 3) ? 1 : d_current_mfnum+1;
}
void
hrpt_decoder_impl::process_address()
{
d_address = ((d_current_word & 0x078) >> 3) & 0x000F;
if(d_verbose)
fprintf(stderr, "SA: %s ", hrpt_ids[d_address]);
}
void
hrpt_decoder_impl::process_day_of_year()
{
d_day_of_year = d_current_word >> 1;
if(d_verbose)
fprintf(stderr, "DOY: %3i ", d_day_of_year);
}
void
hrpt_decoder_impl::process_milli1()
{
d_milliseconds = (d_current_word & 0x7F) << 20;
}
void
hrpt_decoder_impl::process_milli2()
{
d_milliseconds |= (d_current_word << 10);
}
void
hrpt_decoder_impl::process_milli3()
{
d_milliseconds |= d_current_word;
int delta = d_milliseconds - d_last_time;
d_last_time = d_milliseconds;
if(d_verbose)
fprintf(stderr, "MS: %8i DT: %8i", d_milliseconds, delta);
}
} /* namespace noaa */
} /* namespace gr */
|