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
|
#ifndef HAMMING_H_
#define HAMMING_H_
#include <avr/pgmspace.h>
enum HammingResult : uint8_t {
NO_ERROR = 0,
ERROR_IN_PARITY = 0xfe,
UNCORRECTABLE = 0xff,
};
const uint8_t hammingParityLow[] PROGMEM =
{ 0, 3, 5, 6, 6, 5, 3, 0, 7, 4, 2, 1, 1, 2, 4, 7 };
const uint8_t hammingParityHigh[] PROGMEM =
{ 0, 9, 10, 3, 11, 2, 1, 8, 12, 5, 6, 15, 7, 14, 13, 4 };
const uint8_t PROGMEM hammingParityCheck[] = {
NO_ERROR,
ERROR_IN_PARITY,
ERROR_IN_PARITY,
0x01,
ERROR_IN_PARITY,
0x02,
0x04,
0x08,
ERROR_IN_PARITY,
0x10,
0x20,
0x40,
0x80,
UNCORRECTABLE,
UNCORRECTABLE,
UNCORRECTABLE
};
#endif /* HAMMING_H_ */
|