Hamming code: Error Correction Code
Something I spend 2 days re-learning from my MCA days!! Man am i forgetfull.. dont even know if my understanding is correct now.. Generating the Hamming code parity bits First thing to understand about Hamming code is the following Step1: Convert data into bits D0, D1, D2…. Dn-1, Dn where n is divisable by 2 E.g.: N=8 1 0 0 1 0 1 0 0 Step2: Next thing is called grouping. Group Bits in sequence of powers of 2 – call them group index [D0] [D1]…. [Dn] is grouped on power of 0 è[G0_0],[G0_1]…[G0_n] [D0,D1] [D2, D3].. [Dn-1, Dn] is grouped on Power of 1 è[G1_0],[G1_1]…[G1_n] [D0,D1, D2, D3].. [Dn-3, Dn-2,Dn-1, Dn] is grouped on Power of 2 è[G2_0],[G2_1]…[G2_n] Max such groups possible is possible is n/2 è [D0,.., Dn/2], [Dn/2+1,.., Dn] è[Gn/2_1][Gn/2_2] E.g: Groups= Group index 0: [1], [0], [0], [1], [0], [1], [0], [0] Group index 1: [1, 0], [0, 1], [0, 1], [0, 0] Group index 2: [1, 0, 0, 1], [0, 1, 0, 0] Step 3: Each Group has parity generated for all the data bits of each [Gx_y] using XOR...