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
  • Both bad block management and wear leveling are needed.

    The bad block management can be hardest because where do you store the bad block list if your intended sector for that information is broken?

    In the end, the complexities are quite high to integrate wear leveling and bad block management into a well working solution. Definitely not funny to implement for a project. And you basically need to run the code on a PC that can simulate any random combination of errors just to verify that the code copes with multiple broken blocks management blocks.

Reply
  • Both bad block management and wear leveling are needed.

    The bad block management can be hardest because where do you store the bad block list if your intended sector for that information is broken?

    In the end, the complexities are quite high to integrate wear leveling and bad block management into a well working solution. Definitely not funny to implement for a project. And you basically need to run the code on a PC that can simulate any random combination of errors just to verify that the code copes with multiple broken blocks management blocks.

Children