Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Obviously µC/HTTPs requires a file system for reading files. We suggest using a conventional File system implementation such as µC/FS, It allows to load dynamically . This will allow you to dynamically load the web pages and the enable your web server will be able to receive files. However, µC/HTTPs come comes with a minimalist in-house Static File system , it allows to store which only stores static files (stored in the code space memory). Obviously, it is only possible to read them and thus it is not possible to upload file files to a web server when the static file system is used.

 

µC/HTTPs uses the API's defined by µC/TCP-IP Network File System Abstraction Layer (net_fs.h) to access the file system. It is possible to use µC/HTTPs with other file system systems by providing an appropriate implementation of the µC/TCP-IP Network File System Abstraction Layer. Example template files to port the file system are available in the µC/TCP-IP Network File System Abstraction Layer directory.

...