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_16_11_4& hamming_16_11_4, unsigned char *codeword)
{
unsigned char decoded[11];
for (int i = 0; i < 16; i++)
{
std::cout << (int) codeword[i] << " ";
}
std::cout << std::endl;
if (hamming_16_11_4.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[16] = {0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
unsigned char codeword[16], xcodeword[16];
DSDcc::Hamming_16_11_4 hamming_16_11_4;
hamming_16_11_4.encode(msg, codeword);
std::cout << "No errors" << std::endl;
decode(hamming_16_11_4, codeword);
std::cout << std::endl << "Error (2)" << std::endl;
decode(hamming_16_11_4, er0);
std::cout << std::endl << "Flip one bit (2)" << std::endl;
std::copy(codeword, codeword + 16, xcodeword);
codeword[2] ^= 1;
decode(hamming_16_11_4, codeword);
for (int i = 0; i < 5; i++)
{
std::cout << std::endl << "Flip one parity bit: " << 11+i << std::endl;
std::copy(codeword, codeword + 16, xcodeword);
codeword[11+i] ^= 1;
decode(hamming_16_11_4, codeword);
}
std::cout << std::endl << "Flip two bits (2,5)" << std::endl;
std::copy(codeword, codeword + 16, xcodeword);
codeword[2] ^= 1;
codeword[5] ^= 1;
decode(hamming_16_11_4, codeword);
return 0;
}
|