This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

FDI LPC3250 NAND Flash algorithms

Hello,

I have the DK-57TS-LPC3250 demo kit from FDI (LPC3250) (www.teamfdi.com/.../touch-screen.php)

I'm using the demo version of uVision (because we are still evaluating which RTOS and IDE we will be using)

I would like to program some of the examples into the NAND flash but I seem to be missing the Flash Algorithms for this Large Page (LP) flash.

Does anyone have these algorithms they could send to me?

I'm new to uVision so if this does not make sense please feel free to clarify for me.

Thanks

Parents
  • That helps a lot, since you can then store the sector addresses of your base structures there, and only rewrite the first sector when your main badblock sector or main root allocation sector fails.

    The normal way is to have a magic signature and have the software scan sectors (normally using an allocation algorithm of preferred locations to reduce the number of sectors that needs to be scanned) to be able to find a valid "root" sector even if the flash already contains a number of previous, but now broken, root sectors.

    Few people would like units that bricks if they have a file system that relies on a single sector and can't cope with a failure of that sector.

Reply
  • That helps a lot, since you can then store the sector addresses of your base structures there, and only rewrite the first sector when your main badblock sector or main root allocation sector fails.

    The normal way is to have a magic signature and have the software scan sectors (normally using an allocation algorithm of preferred locations to reduce the number of sectors that needs to be scanned) to be able to find a valid "root" sector even if the flash already contains a number of previous, but now broken, root sectors.

    Few people would like units that bricks if they have a file system that relies on a single sector and can't cope with a failure of that sector.

Children