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

RL-FlashFS - fformat options LOW and LOW_EB

Hi All,

I'm currently working on an old project with uVision4.60

I'm using the RL-FlashFS with an SD card. I have the majority of the file maintenance routines working including fformat where I can use the options FAT32 and WIPE.

I cannot however get the LOW or LOW_EB options to work (see link below). Does anybody know whether these are later additions to the fformat function?

http://www.keil.com/support/man/docs/rlarm/rlarm_fformat.htm

Thanks

Tom

Parents
  • From your linked web page:

    LOW and LOW_EB options are used to low-level format the NAND drive.
    
    - LOW will erase all good blocks, but will preserve bad blocks.
    - LOW_EB will also erase bad blocks - this is particularly useful at the NAND driver
      development time, when blocks may be accidentally marked as bad - this is often the
      cause of fformat failure on NAND devices.
    

    Therefore, these two options are only applicable on NAND drive.

Reply
  • From your linked web page:

    LOW and LOW_EB options are used to low-level format the NAND drive.
    
    - LOW will erase all good blocks, but will preserve bad blocks.
    - LOW_EB will also erase bad blocks - this is particularly useful at the NAND driver
      development time, when blocks may be accidentally marked as bad - this is often the
      cause of fformat failure on NAND devices.
    

    Therefore, these two options are only applicable on NAND drive.

Children