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

HTTP with file system

I found out Keil Embedded File system does not support opening more than 2 files at the same file.

I have unit test to prove it now.

Is this limitation with Embedded File system?

We have more than 2 HTTP sessions. these HTTP session trying to open more than 2 files simultaneous using fopen. then browser HTTP Get request fails for some files.

I try setting
File : File_config.c
Embedded File System
Number of Files > 3

If I try opening more than 3 files at same time. fopen hangs.

I am using External NOR Flash memory with SPI driver.

If I have only 2 HTTP sessions and Number of Files =2 then it works but browser load very slowly first time if no cache for any files.

I have few html, JS and css files.

Have Keil test their HTTP server with Embedded File System or we need to use SD card with FAT File system.

Parents
  • Embedded File System should normally open more than 2 files at the same time, since number of concurrently open files is defined with "Number of open files" configuration option.

    Is you heap setting correct? File System needs 592 bytes of heap for each opened file (heap size = open_files * 592 bytes)

Reply
  • Embedded File System should normally open more than 2 files at the same time, since number of concurrently open files is defined with "Number of open files" configuration option.

    Is you heap setting correct? File System needs 592 bytes of heap for each opened file (heap size = open_files * 592 bytes)

Children
No data