-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathinmarsatc_decoder.cpp
More file actions
472 lines (465 loc) · 23.1 KB
/
inmarsatc_decoder.cpp
File metadata and controls
472 lines (465 loc) · 23.1 KB
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
#include <inmarsatc_decoder.h>
namespace inmarsatc {
namespace decoder {
//START CLASS UWFinder
void UWFinder::SetTolerance(int tolerance) {
this->tolerance = tolerance;
}
bool UWFinder::IsFrameDetected(bool lowestFrame, int *nUW, int *rUW, bool *isReversedPolarity, bool *isMidStreamReversePolarity, bool *isReversedFirst) {
bool isFirstSymbolDetermined = false;
*isReversedFirst = false;
*nUW = 0;
*rUW = 0;
*isReversedPolarity = false;
*isMidStreamReversePolarity = false;
int patternPos = 0;
// the symbolRegister array stores data as it comes out of the demodulator, 1st symbol at the highest index
// in the symbolRegister
// there are 160 + 2 columns per row
int symbolPos = UWFINDER_FRAME_LENGTH - 1;
int minPos = 0;
if (!lowestFrame) {
symbolPos = 2 * UWFINDER_FRAME_LENGTH - 1;
minPos = UWFINDER_FRAME_LENGTH;
}
for (; symbolPos >= minPos; symbolPos -= 162) {
//compute normal polarity
uint8_t pp = nrmPolUwPattern[patternPos];
uint8_t rpp = revPolUwPattern[patternPos];
uint8_t sra = symbolRegister[symbolPos];
uint8_t srb = symbolRegister[symbolPos - 1];
*nUW += pp ^ sra;
*nUW += pp ^ srb;
//compute reverse polarity
*rUW += rpp ^ sra;
*rUW += rpp ^ srb;
if ((!isFirstSymbolDetermined) && (*rUW != *nUW)) {
isFirstSymbolDetermined = true;
*isReversedFirst = *rUW > *nUW;
}
patternPos++;
//detect polarity change midstream
if (!*isMidStreamReversePolarity){
*isMidStreamReversePolarity = *nUW % 2 != 0;
}
}
*isReversedPolarity = *rUW <= tolerance;
return (*nUW <= tolerance || *rUW <= tolerance);
}
std::vector<UWFinder::uwfinder_result> UWFinder::Decode(uint8_t bitsDemodulated[DEMODULATOR_SYMBOLSPERCHUNK], bool isHardDecision) {
std::vector<uwfinder_result> ret;
for(int pos = 0; pos < DEMODULATOR_SYMBOLSPERCHUNK; pos++) {
//shift register to right with one symbol to make space for the next incoming symbol
std::copy(symbolRegister, &symbolRegister[(UWFINDER_FRAME_LENGTH*2)-1], &symbolRegister[1]);
//store
symbolRegister[0] = bitsDemodulated[pos];
symbolCount++;
if (symbolCount >= UWFINDER_FRAME_LENGTH) {
int nUW = 0;
int rUW = 0;
bool isReversedPolarity = 0;
bool isMidStreamReversePolarity = 0;
bool isReversedFirst_ = 0;
if(IsFrameDetected(true, &nUW, &rUW, &isReversedPolarity, &isMidStreamReversePolarity, &isReversedFirst_)) {
// We check symbolRegister length
// If the length is larger than 1.6 the length of a frame, we can assume
// there is another at least 0.6 of a frame before the current detected one
// We attempt to correct it and redetect it.
// If after correction it passes the tolerence we send it further before the
// packet we detected.
if (symbolCount > UWFINDER_FRAME_LENGTH * 1.6) {
// There is no point in checking if the frame has been detected, however we need the
// output values
int nUW_ = 0;
int rUW_ = 0;
bool isReversedPolarity_ = false;
bool isMidStreamReversePolarity_ = false;
IsFrameDetected(false, &nUW_, &rUW_, &isReversedPolarity_, &isMidStreamReversePolarity_, &isReversedFirst_);
// We reverse all symbols either for reverse polarity or for normal
// however we need to know which are which
int i_ = 0;
if (isReversedFirst_) {
// The highest index in the uncertain frame contain reversed polarity symbols
i_ = (2 * UWFINDER_FRAME_LENGTH - 1) - (81 * rUW_);
} else {
i_ = (2 * UWFINDER_FRAME_LENGTH - 1) - (81 * nUW_);
}
for (; i_ > UWFINDER_FRAME_LENGTH; i_--) {
symbolRegister[i_] = symbolRegister[i_] ^ 1;
}
// now we reassess the result
if(IsFrameDetected(false, &nUW_, &rUW_, &isReversedPolarity_, &isMidStreamReversePolarity_, &isReversedFirst_)) {
uwfinder_result res;
std::copy(symbolRegister, &symbolRegister[UWFINDER_FRAME_LENGTH-1], res.uwFrame);
res.length = UWFINDER_FRAME_LENGTH;
res.isReversedPolarity = isReversedPolarity_;
//reverse reversed (for hard decision)
//this will neede rewriting when the demodulator will output soft symbols.
if(isReversedPolarity_) {
for(int i = 0; i < UWFINDER_FRAME_LENGTH; i++) {
res.uwFrame[i] = res.uwFrame[i] ^ 1;
}
}
res.symbolCount = UWFINDER_FRAME_LENGTH;
res.isMidStreamReversePolarity = isMidStreamReversePolarity_;
res.BER = std::min(nUW_, rUW_);
res.isUncertain = true;
res.isHardDecision = isHardDecision;
ret.push_back(res);
}
}
uwfinder_result res;
for(int i = 0; i < UWFINDER_FRAME_LENGTH; i++) {
res.uwFrame[i] = symbolRegister[i];
}
res.length = UWFINDER_FRAME_LENGTH;
res.isReversedPolarity = isReversedPolarity;
//reverse reversed (for hard decision)
//this will neede rewriting when the demodulator will output soft symbols.
if(isReversedPolarity) {
for(int i = 0; i < UWFINDER_FRAME_LENGTH; i++) {
res.uwFrame[i] = res.uwFrame[i] ^ 1;
}
}
res.symbolCount = symbolCount;
res.isMidStreamReversePolarity = isMidStreamReversePolarity;
res.BER = std::min(nUW, rUW);
res.isUncertain = false;
res.isHardDecision = isHardDecision;
ret.push_back(res);
// There is no point in clearing up the symbolRegister
// However also there is no point in detecting until we fill in the register again
symbolCount = 0;
}
}
}
return ret;
}
//END CLASS UWFinder
//START CLASS Depermuter
Depermuter::Depermuter() {
//generate depermutting array
depermuttingArray.resize(64);
for (int i = 0; i < 64; i++) {
//j(i)
depermuttingArray[i] = (i * 23) % 64;
//take right-hand 6 bits only
depermuttingArray[i] = depermuttingArray[i] & 0x3F;
//get index in source UWFrame (assumes a reversed UWFrame)
depermuttingArray[i] = depermuttingArray[i] * 162;
}
}
Depermuter::depermuter_result Depermuter::depermute(uint8_t uwFrame[UWFINDER_FRAME_LENGTH], bool isHardDecision) {
//reverse frame
std::reverse(uwFrame, &uwFrame[UWFINDER_FRAME_LENGTH]);
//create the destination
depermuter_result res;
//depermute
for (int i = 0; i < 64; i++) {
int from_start_index = depermuttingArray[i];
int to_start_index = (i*162);
int num_elements = 162;
for(int k = 0; k < num_elements; k++) {
res.depermutedFrame[to_start_index + k] = uwFrame[from_start_index + k];
}
}
res.isHardDecision = isHardDecision;
res.length = DEPERMUTER_FRAME_LENGTH;
return res;
}
//END CLASS Depermuter
//START CLASS Deinterleaver
Deinterleaver::deinterleaver_result Deinterleaver::deinterleave(uint8_t depermutedFrame[DEPERMUTER_FRAME_LENGTH], bool isHardDecision) {
//store depermutedFrame into the deinterleaver matrix leaving out the UW
int row = -1;
int column = 0;
for (int i = 0; i < DEPERMUTER_FRAME_LENGTH; i++) {
//at over 162 symbols: reset column, increment row and jump over the UW
if (i % 162 == 0) {
column = 0;
row++;
i += 2;
}
deinterleverMatrix[row][column] = depermutedFrame[i];
column++;
}
//create the destination
Deinterleaver::deinterleaver_result res;
//read the matrix into the destination, transposed
int pos = 0;
row = 0;
column = 0;
for (; row < 64;) {
res.deinterleavedFrame[pos] = deinterleverMatrix[row][column];
row++;
if (row % 64 == 0) {
row = 0;
column++;
if (column == 160) {
break;
}
}
pos++;
}
res.isHardDecision = isHardDecision;
res.length = DEINTERLEAVER_FRAME_LENGTH;
return res;
}
//END CLASS Deinterleaver
//START CLASS ViterbiDecoder
ViterbiDecoder::ViterbiDecoder() {
int amp = 100;
double esn0 = 5.0;
double bias = 0.0;
int scale = 4;
double noise;
int s;
int bit;
double metrics[2][256];
double p0;
double p1;
// Es/N0 as power ratio
esn0 = pow(10.0, esn0 / 10);
noise = 0.5 / esn0; // only half the noise for BPSK
noise = sqrt(noise); // noise/signal Voltage ratio
// Zero is a special value, since this sample includes all
// lower samples that were clipped to this value, i.e., it
// takes the whole lower tail of the curve
// P(s|1)
p1 = (0.5 + 0.5 * std::erf((((0 - offset + 0.5) / amp - 1) / noise) / sqrt2));
// Prob of this value occurring for a 0-bit
// P(s|0)
p0 = (0.5 + 0.5 * std::erf((((0 - offset + 0.5) / amp + 1) / noise) / sqrt2));
metrics[0][0] = (log(2 * p0 / (p1 + p0)) * log2) - bias;
metrics[1][0] = (log(2 * p1 / (p1 + p0)) * log2) - bias;
for (s = 1; s < 255; s++) {
// P(s|1), prob of receiving s given 1 transmitted
p1 = (0.5 + 0.5 * std::erf((((s - offset + 0.5) / amp - 1) / noise) / sqrt2))
- (0.5 + 0.5 * std::erf((((s - offset - 0.5) / amp - 1) / noise) / sqrt2));
// P(s|0), prob of receiving s given 0 transmitted
p0 = (0.5 + 0.5 * std::erf((((s - offset + 0.5) / amp + 1) / noise) / sqrt2))
- (0.5 + 0.5 * std::erf((((s - offset - 0.5) / amp + 1) / noise) / sqrt2));
metrics[0][s] = (log(2 * p0 / (p1 + p0)) * log2) - bias;
metrics[1][s] = (log(2 * p1 / (p1 + p0)) * log2) - bias;
}
// 255 is also a special value
// P(s|1)
p1 = 1 - (0.5 + 0.5 * std::erf((((255 - offset - 0.5) / amp - 1) / noise) / sqrt2));
// P(s|0)
p0 = 1 - (0.5 + 0.5 * std::erf((((255 - offset - 0.5) / amp + 1) / noise) / sqrt2));
metrics[0][255] = (log(2 * p0 / (p1 + p0)) * log2) - bias;
metrics[1][255] = (log(2 * p1 / (p1 + p0)) * log2) - bias;
// The probability of a raw symbol error is the probability
// that a 1-bit would be received as a sample with value
// 0-128. This is the offset normal curve integrated from -Inf to 0.
for (bit = 0; bit < 2; bit++) {
for (s = 0; s < 256; s++) {
/// Scale and round to nearest integer
mettab[bit][s] = (int)floor(metrics[bit][s] * scale + 0.5);
}
}
}
ViterbiDecoder::viterbidecoder_result ViterbiDecoder::decode(uint8_t deinterleavedFrame[DEINTERLEAVER_FRAME_LENGTH], bool isHardDecision) {
viterbidecoder_result res;
int bitcnt = 0;
int nbits = DEINTERLEAVER_FRAME_LENGTH / 16;
int mets[4];
long bestmetric;
long beststate;
int i;
int j = 0;
// Initialize arrays
std::vector<State> state;
state.resize(64);
std::vector<State> next;
next.resize(64);
std::vector<State> m;
// Initialize starting metrics to prefered 0 state
state[0].metric = 0;
for (i = 1; i < 64; i++) {
state[i].metric = -999999;
}
state[0].path = 0;
int inputCounter = 0;
std::vector<uint8_t> input;
input.resize(DEINTERLEAVER_FRAME_LENGTH);
/// This is a soft bits viterbi decoder.
/// If the demodulator outputs hard bits, 0 or 1
/// we simulate the soft bits as: 28 = zero, 228 = 1
if (isHardDecision) {
for (int k = 0; k < DEINTERLEAVER_FRAME_LENGTH; k++) {
input[k] = deinterleavedFrame[k] == 0 ? (uint8_t)28 : (uint8_t)228;
}
}
for (bitcnt = 0; bitcnt < nbits * 8; bitcnt++) {
// Read input symbol pair and compute all possible branch metrics
mets[0] = mettab[0][input[inputCounter]] + mettab[0][input[inputCounter + 1]];
mets[1] = mettab[0][input[inputCounter]] + mettab[1][input[inputCounter + 1]];
mets[2] = mettab[1][input[inputCounter]] + mettab[0][input[inputCounter + 1]];
mets[3] = mettab[1][input[inputCounter]] + mettab[1][input[inputCounter + 1]];
inputCounter += 2;
/// Macro calls originally were generated by genbut.c, as a loop below.
/// The "C++ to C# Converter" will actually create code for the macros
/// and we'll end up with about 900+ lines of code, but they will be fully
/// functional (tested).
/// Another bonus about using the converter is that it will give you the
/// indexes into the parity lookup table as well.
for (i = 0; i < 32; i++) {
long m0 = 0;
long m1 = 0;
int sym = partabIdx[i];
/// Add-Compare-Select for 0 branch
m0 = state[i].metric + mets[sym];
m1 = state[i + 32].metric + mets[3 ^ sym];
if (m0 > m1) {
next[2 * i].metric = m0;
next[2 * i].path = state[i].path << 1;
} else {
next[2 * i].metric = m1;
next[2 * i].path = (state[i + 32].path << 1) | 1;
}
/// Add-Compare-Select for 1 branch
m0 = state[i].metric + mets[3 ^ sym];
m1 = state[i + 32].metric + mets[sym];
if (m0 > m1) {
next[2 * i + 1].metric = m0;
next[2 * i + 1].path = state[i].path << 1;
} else {
next[2 * i + 1].metric = m1;
next[2 * i + 1].path = (state[i + 32].path << 1) | 1;
}
}
// Swap current and next states
m = state;
state = next;
next = m;
if (bitcnt > DEINTERLEAVER_FRAME_LENGTH - 7) {
// In tail, poison non-zero nodes
for (i = 1; i < 64; i += 2) {
state[i].metric = -9999999;
}
}
// Produce output every 8 bits once path memory is full
if ((bitcnt % 8) == 5 && bitcnt > 32) {
// Find current best path
bestmetric = state[0].metric;
beststate = 0;
for (i = 1; i < 64; i++) {
if (state[i].metric > bestmetric) {
bestmetric = state[i].metric;
beststate = i;
}
}
res.viterbiFrame[j++] = (uint8_t)(state[beststate].path >> 24);
}
}
// Output remaining bits from 0 state
if ((i = (int)(bitcnt % 8)) != 6) {
state[0].path <<= 6 - i;
}
res.viterbiFrame[j++] = (uint8_t)(state[0].path >> 24);
res.viterbiFrame[j++] = (uint8_t)(state[0].path >> 16);
res.viterbiFrame[j++] = (uint8_t)(state[0].path >> 8);
res.viterbiFrame[j] = (uint8_t)(state[0].path);
res.length = VITERBIDECODER_FRAME_LENGTH;
return res;
}
//END CLASS ViterbiDecoder
//START CLASS Descrambler
Descrambler::Descrambler() {
uint8_t x7;
uint8_t x5;
uint8_t x4;
uint8_t x3;
uint8_t newByte;
/// Initial state; the documentation found is incorrect as it indicates 0x40, however by
/// corroboration with more documents and experimenting, the 0x80 generates the correct
/// scrambling/descrambling array.
uint8_t register_var = 0x80;
for (int i = 0; i < DESCRAMBLER_GROUP_COUNT; i++) {
x7 = (uint8_t)(register_var & 0x01);
descramblerArray[i] = x7;
x5 = (uint8_t)((register_var & 0x04) >> 2);
x4 = (uint8_t)((register_var & 0x08) >> 3);
x3 = (uint8_t)((register_var & 0x10) >> 4);
newByte = (uint8_t)(x7 ^ x5 ^ x4 ^ x3);
register_var >>= 1;
register_var = (uint8_t)(register_var | (uint8_t)(newByte << 7));
}
}
Descrambler::descrambler_result Descrambler::decode(uint8_t viterbiFrame[VITERBIDECODER_FRAME_LENGTH]) {
descrambler_result res;
/// Invert all
for (int i = 0; i < DESCRAMBLER_FRAME_LENGTH; i++) {
res.descramblerFrame[i] = invertBits(viterbiFrame[i]);
}
/// Apply the bitwise complement only for the "1" states of the descrambler array.
int j = 0;
for (int i = 0; i < DESCRAMBLER_GROUP_COUNT; i++) {
if (descramblerArray[i] == 1) {
res.descramblerFrame[j] = (uint8_t)~(res.descramblerFrame[j]);
res.descramblerFrame[j + 1] = (uint8_t)~(res.descramblerFrame[j + 1]);
res.descramblerFrame[j + 2] = (uint8_t)~(res.descramblerFrame[j + 2]);
res.descramblerFrame[j + 3] = (uint8_t)~(res.descramblerFrame[j + 3]);
}
j += 4;
}
res.frameNumber = res.descramblerFrame[2] << 8 | res.descramblerFrame[3];
res.timestamp = std::chrono::system_clock::now();
res.length = DESCRAMBLER_FRAME_LENGTH;
return res;
}
uint8_t Descrambler::invertBits(uint8_t input) {
uint8_t result;
result = (uint8_t)((input & 0x01));
result <<= 1;
result |= (uint8_t)((input & 0x02) >> 1);
result <<= 1;
result |= (uint8_t)((input & 0x04) >> 2);
result <<= 1;
result |= (uint8_t)((input & 0x08) >> 3);
result <<= 1;
result |= (uint8_t)((input & 0x16) >> 4);
result <<= 1;
result |= (uint8_t)((input & 0x32) >> 5);
result <<= 1;
result |= (uint8_t)((input & 0x64) >> 6);
result <<= 1;
result |= (uint8_t)((input & 0x80) >> 7);
return result;
}
//END CLASS Descrambler
//START CLASS Decoder
Decoder::Decoder(int tolerance) {
uwFinder = new UWFinder();
uwFinder->SetTolerance(tolerance);
depermuter = new Depermuter();
deinterleaver = new Deinterleaver();
viterbiDecoder = new ViterbiDecoder();
descrambler = new Descrambler();
}
std::vector<Decoder::decoder_result> Decoder::decode(uint8_t inputBits[DEMODULATOR_SYMBOLSPERCHUNK]) {
std::vector<decoder_result> ret;
std::vector<UWFinder::uwfinder_result> uwfinder_result = uwFinder->Decode(inputBits, false);
for(int i = 0; i < (int)uwfinder_result.size(); i++) {
Depermuter::depermuter_result depermuter_result = depermuter->depermute(uwfinder_result[i].uwFrame, true);
Deinterleaver::deinterleaver_result deinterleaver_result = deinterleaver->deinterleave(depermuter_result.depermutedFrame, true);
ViterbiDecoder::viterbidecoder_result viterbidecoder_result = viterbiDecoder->decode(deinterleaver_result.deinterleavedFrame, true);
Descrambler::descrambler_result descrambler_result = descrambler->decode(viterbidecoder_result.viterbiFrame);
decoder_result res;
std::copy(descrambler_result.descramblerFrame, &descrambler_result.descramblerFrame[DESCRAMBLER_FRAME_LENGTH-1], res.decodedFrame);
res.length = descrambler_result.length;
res.BER = uwfinder_result[i].BER;
res.frameNumber = descrambler_result.frameNumber;
res.isHardDecision = true;
res.isMidStreamReversePolarity = uwfinder_result[i].isMidStreamReversePolarity;
res.isReversedPolarity = uwfinder_result[i].isReversedPolarity;
res.isUncertain = uwfinder_result[i].isUncertain;
res.timestamp = descrambler_result.timestamp;
ret.push_back(res);
}
return ret;
}
//END CLASS Decoder
}
}