ESP8266 Webserver Project

Moderator: Sprite_tm

User avatar
By kathir
#33185 Sorry Sprite_tm

I trubling you much

I find it user_main .c file
// 0x40200000 is the base address for spi flash memory mapping, ESPFS_POS is the position
// where image is written in flash that is defined in Makefile.
#ifdef ESPFS_POS
espFsInit((void*)(0x40200000 + ESPFS_POS));
#else
espFsInit((void*)(webpages_espfs_start));
#endif
httpdInit(builtInUrls, 80);

Thanking you
User avatar
By kathir
#33225 I have succesfully ported esphttpd prohect in ARDUINO IDE with natice C CODE using libhttpd.a .But when i try to build webpage.espfs under cygwin emvironment in windows size of file is too big compared to file size build under linux environment. Can any one suggst way to build webpage.espfs under windows enviriment

M.K.SAN
User avatar
By kathir
#33434 In esphttpd project How files greater than 2048 bytes are handled and sending ? how they are splited in to packets?
A WELL DOCUMENTED DOCUMENT WILL BE HELPFULL TO UNDERSTAND THE COCEPT? HOW FILES ARE ENCODED AND DECODED ?

M.K.SAN