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

fat 32 implementation on at91sam9260

Hello, I want to implement the FAT32 file system on USB host port for AT91SAM9260.My application is to to read/write the .txt file from the mass storage device. so please help me regarding to this topic....thank you..

Parents
  • So - not formatted. Then that first sector will not have any file system signature. So the code will obviously not find any.

    And the very big question then: Why you ask us what to do, when the answer has to be that you need to format the memory? Without formatting, there are no FAT-32 on the memory. And no file because you don't have any file system to store the file in. So your program just can't read any file.

    You can't mount a file system that doesn't exist. So make it exist.

Reply
  • So - not formatted. Then that first sector will not have any file system signature. So the code will obviously not find any.

    And the very big question then: Why you ask us what to do, when the answer has to be that you need to format the memory? Without formatting, there are no FAT-32 on the memory. And no file because you don't have any file system to store the file in. So your program just can't read any file.

    You can't mount a file system that doesn't exist. So make it exist.

Children