Hello Everyone,
I am using TM4C1294KCPDT and TivaWare_C_Series-2.1.2.111 for my application. I am trying to implement web server application using lwip httpd (no RTOS) from SD card (i.e. all html, javascript, jpg files are stored in sd card). (I have referred sample code: C:\ti\TivaWare_C_Series-2.1.2.111\examples\boards\dk-tm4c129x\enet_lwip).
By entering IP address of the device from web browser, the "index.html" page of my device should load with its data. My "index.html" page size is approx 70KB and javascript file size is approx. 40KB.
When I try to load the web page, most of the time it fails to load web page and its contents. I tried to debug the web page by going on 'Inspect' option of web page; there it shows me error: "Invalid or unexpected token" in javascript file. It actually make some invalid token (which doesn't exists in my javascript file) while receiving data from server. And every time it gives different error for different token in different files(html/javascript).
I tried to implement web server in my Flash/ROM, it works properly but in case of sd card web server, it failed.
Any help would be appreciated.