...
For the file system, µC/HTTPs uses the network file system layer included with µC/TCP-IP located inside the uC-TCPIP/FS folder. Therefore, the header file net_fs.h
inside this folder must be include to your project, no matter what file system your HTTP server is using.
If a conventional file system is used, the port should be located also inside the uC-TCPIP/FS folder. A port for the µC/FS -V4 file system is already included in this folder. If a file system other than µC/FS is used, a port template is available inside the uC-TCPIP/FS/Template
folder to be customize according to your file system.
If the Static file system is used, the port for this file system is located inside uC/HTTPs. Therefore, the source files http-s_fs_static.c/.h
files under the folder name Static must be include to your project. They are located inside theMicrium/Software/uC-HTTPs/FS/Static
folder. Furthermore, The static file system configuration file template http-s_fs_static_cfg.h
must must be copied in your application directory. This configuration file can be retrieve inside the the folder Cfg (i.e Micrium/Software/uC-HTTPs/FS/Static/Cfg/Template
folder)
.
Compiler settings
Finally, add the following include paths to your project’s C compiler settings:
\Micrium\Software\uC-HTTPs
\Micrium\Software\uC-TCPIP
\Micrium\Software\uC-<OS-Version>
...