File: hamming7.cpp

package info (click to toggle)
dsdcc 1.9.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,448 kB
  • sloc: cpp: 15,245; makefile: 46
file content (97 lines) | stat: -rw-r--r-- 3,058 bytes parent folder | download | duplicates (3)
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
///////////////////////////////////////////////////////////////////////////////////
// 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_7_4& hamming_7_4, unsigned char *codeword)
{
    for (int i = 0; i < 7; i++)
    {
        std::cout << (int) codeword[i] << " ";
    }

    std::cout << std::endl;

    if (hamming_7_4.decode(codeword))
    {
        for (int i = 0; i < 4; i++)
        {
            std::cout << (int) codeword[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[4] = {1, 0, 0, 1};
    unsigned char er0[7] = {0, 0, 1, 0, 0, 0, 0};
    unsigned char codeword[7], xcodeword[7];

    DSDcc::Hamming_7_4 hamming_7_4;
    hamming_7_4.encode(msg, codeword);

    std::cout << "No errors" << std::endl;
    decode(hamming_7_4, codeword);

    std::cout << std::endl << "Error (2)" << std::endl;
    decode(hamming_7_4, er0);

    std::cout << std::endl << "Flip one bit (2)" << std::endl;
    std::copy(codeword, codeword + 7, xcodeword);
    xcodeword[2] ^=  1;
    decode(hamming_7_4, xcodeword);

    for (int i = 0; i < 3; i++)
    {
        std::cout << std::endl << "Flip one parity bit " << 4+i << std::endl;
        std::copy(codeword, codeword + 7, xcodeword);
        xcodeword[4+i] ^=  1;
        decode(hamming_7_4, xcodeword);
    }

    std::cout << std::endl << "Valid checksums" << std::endl;

    for (int i = 0; i < 16; i++)
    {
    	msg[0] = (i>>3) & 1;
    	msg[1] = (i>>2) & 1;
    	msg[2] = (i>>1) & 1;
    	msg[3] = i & 1;

    	hamming_7_4.encode(msg, codeword);
    	int codenumber = 0;

    	for (int j = 0; j < 7; j++)
    	{
    		codenumber += codeword[j] * (1<<(6-j));
    	}

    	std::cout << codenumber << std::endl;
    }

    return 0;
}