-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathhamming15.cpp
89 lines (70 loc) · 3.05 KB
/
hamming15.cpp
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
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016 Edouard Griffiths, F4EXB. //
// //
// 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 as version 3 of the License, or //
// //
// 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 V3 for more details. //
// //
// You should have received a copy of the GNU General Public License //
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <iostream>
#include "../fec.h"
void decode(DSDcc::Hamming_15_11& hamming_15_11, unsigned char *codeword)
{
unsigned char decoded[11];
for (int i = 0; i < 15; i++)
{
std::cout << (int) codeword[i] << " ";
}
std::cout << std::endl;
if (hamming_15_11.decode(codeword, decoded, 1))
{
for (int i = 0; i < 11; i++)
{
std::cout << (int) decoded[i] << " ";
}
std::cout << std::endl << "Decoding OK" << std::endl;
}
else
{
std::cout << "Decoding error" << std::endl;
}
}
int main(int argc, char *argv[])
{
unsigned char msg[11] = {1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1};
unsigned char er0[15] = {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
unsigned char codeword[15], xcodeword[15];
DSDcc::Hamming_15_11 hamming_15_11;
hamming_15_11.encode(msg, codeword);
std::cout << "No errors" << std::endl;
decode(hamming_15_11, codeword);
std::cout << std::endl << "Error (2)" << std::endl;
decode(hamming_15_11, er0);
std::cout << std::endl << "Flip one bit (2)" << std::endl;
std::copy(codeword, codeword + 15, xcodeword);
xcodeword[2] ^= 1;
decode(hamming_15_11, xcodeword);
std::cout << std::endl << "Flip one bit (5)" << std::endl;
std::copy(codeword, codeword + 15, xcodeword);
xcodeword[5] ^= 1;
decode(hamming_15_11, xcodeword);
std::cout << std::endl << "Flip one bit (8)" << std::endl;
std::copy(codeword, codeword + 15, xcodeword);
xcodeword[8] ^= 1;
decode(hamming_15_11, xcodeword);
for (int i = 0; i < 4; i++)
{
std::cout << std::endl << "Flip one bit - parity bit" << 11+i << std::endl;
std::copy(codeword, codeword + 15, xcodeword);
xcodeword[11+i] ^= 1;
decode(hamming_15_11, xcodeword);
}
return 0;
}