9 years, 1 month ago.

changing path to access SD files

Thank you for useful sample of MiMic library for mbed. I want to use only SD card file system for Web acess, with disabling local, romfs, and so on. On this situation, can I change the path to access files in SD? For exampe, "http://(IP)/a.html" fo access "a.html" in SD card. How should I specify the first parameter in modsd.setParam()?

Question relating to:

The program publishes files at local directory and SD filesystem. It is a full-fledged webServer somewhat. autoconf, DHCP, ethernet, HTTP server, HTTPServer, mdns, MiMic, SSDP, UPnP, webserver, webservice

Thank you for updating your library. I've checked it, and it works fine! (In your sample code, there are two "Net" objects; the first one should be commended-out, is it OK?)

By the way, is it possible to access /index.html if accessed "http://(IP)/" ? (access to http://(IP)/ shows http://(IP)/index.html)

posted by Junichi Akita 24 Mar 2015

1 Answer

9 years, 1 month ago.

Hello.

It will need to update ModLocalFileSystem.cpp. Current libMiMic can not change the file system path.

This request will take some time. Please wait time about a week.

The next version library has some changes around network interface. I think it is necessary to little change to the your application.

For a while update, libMiMic will be published frequently, but there is no compatibility with current API.

Please do not update your repository.

Accepted Answer

Thank you for your reply. I'm looking forward to libMiMic's update soon!

posted by Junichi Akita 15 Mar 2015

I was updated libMiMic library. Please update libMiMic of your project.

It requires changes to your main.c program.

1. Add MiMicNetIf netif; variable. see http://developer.mbed.org/users/nyatla/code/MbedFileServer/rev/6923864662d4 This is new network initialization sequence. 2. set "virtual path" parameter to modsd.setParam;

before modsd.setParam("sd",ModLocalFileSystem::FST_SDFATFS); after modsd.setParam("sd","/",ModLocalFileSystem::FST_SDFATFS);

2nd parameter is virtial host path. for example,"/" or "/virtual/" ("/*/")

Please tell me if you find out bugs.

posted by Ryo Iizuka 17 Mar 2015