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

Flash-FS applied to I2C EEPROM - cannot read a file.

Hello,

I got:

- STM32F103RC (Cortex-M3),
- I2C EEPROM M24128 (16KB, page size 64 bytes),
- Flash-FS V4.20.

I modified a FS_SPI_FlashPrg.c from an example to acces an I2C EEPROM. Taking the article http://www.keil.com/support/docs/3482.htm into consideration I described in FS_SPI_FlashDev.h the storage as 8 virtual sectors (blocks) of 2KB each. The EraseSector procedure takes care of writing 0xFF to all 64 Byte long EEPROM pages building a virtual sector.

It works so far that I can format via fformat("S0:") and write a file via f=fopen("S0:\\filename.txt", "w") followed by fputs("Test", f). Both return success, on the dump of the EEPROM the "\filename.txt" string and after some bytes the string "Test" can be seen. At the top of the EEPROM address space masks of the allocation information seem to be present, too, as described in help to EFS.

The problem is: while f=fopen("S0:\\filename.txt", "r") returns success, the following fgets(s, sizeof(s), f) (and fread(...) I tried) returns always NULL. Besides, ffind(...) gets like:

\filename.txt 0, 01-01-1980 12:00:00

Total: 0 Free: 0.

Parents
  • Thanks for you reply!

    The reading functions/ffind return nothing/weird information always: both just after the file creation sequence (like format-write-close) and full reboot afterwards. Unfortunately, I've got no source code of Flash-FS - just FS_CM3.lib accompanied with the header files/File_Config.c and some examples/drivers (the legacy :)), - so I cannot comprehend what's going on inside.

    My hope is merely, someone here may have dealt with the issue and solved it, but on my opinion, FS has a bug handling the EFS allocation: open file returns OK but the following reading operations retrieve nothing!

    I can see and trace the calls to my I2C EEPROM support inside of FS_FlashPrg.c while FS tries to open and read a file: my I2C functions return correct bytes from the allocation area (high addresses) but FS seems not to be satisfied with the retrieved information because it breaks without trying to read the content of the opened file from the low addresses, and fgets/fread return NULL.

    I've used sf0_spi.ProgramPage()/.ReadData() to write to/dump the EEPROM content beyond the file system just to test whether my I2C EEPROM support works correctly. Everything was OK, so I can exclude possible failures in the communication with the I2C EEPROM.

Reply
  • Thanks for you reply!

    The reading functions/ffind return nothing/weird information always: both just after the file creation sequence (like format-write-close) and full reboot afterwards. Unfortunately, I've got no source code of Flash-FS - just FS_CM3.lib accompanied with the header files/File_Config.c and some examples/drivers (the legacy :)), - so I cannot comprehend what's going on inside.

    My hope is merely, someone here may have dealt with the issue and solved it, but on my opinion, FS has a bug handling the EFS allocation: open file returns OK but the following reading operations retrieve nothing!

    I can see and trace the calls to my I2C EEPROM support inside of FS_FlashPrg.c while FS tries to open and read a file: my I2C functions return correct bytes from the allocation area (high addresses) but FS seems not to be satisfied with the retrieved information because it breaks without trying to read the content of the opened file from the low addresses, and fgets/fread return NULL.

    I've used sf0_spi.ProgramPage()/.ReadData() to write to/dump the EEPROM content beyond the file system just to test whether my I2C EEPROM support works correctly. Everything was OK, so I can exclude possible failures in the communication with the I2C EEPROM.

Children