4-bit ECC algorithm

Can someone give a link to the 4-bit ECC algorithm?

I need to implement one for the built-in Nand Flash driver.

+3
source share
2 answers

Best of all, most likely, is the Reed Solomon Code . Here is a pretty good explanation of how they work, and here is some code that actually implements the algorithm. This is not very well commented, sorry. Some google action will be displayed more.

Good luck.

+5
source

NAND Flash provides reference implementations. Check out the implementations in the U-boot and Linux kernel repositories.

drivers/mtd/nand/- , .

+1

Source: https://habr.com/ru/post/1753693/


All Articles