This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

HTTP Server

Hi everyone,

I am wondering how I can incorporate a local webserver onto my project I have been working on.

Right now - I have copied all of the code from the http_server example included in the SDK and successfully been able to both compile and link my project.

Just from going through the code alone, I see a lot of un-needed bloat ( LEDs and maybe the FREERTOS defines ) and I will be going through it to get it removed.

If anyone has any other guides out there or good examples that would be great.  I apologize in advance if this question has been asked.  While searching topics for people with similar interests, I usually see posts for other boards.  Being new to TI SoC's, is all code fairly similar and re-usable? 

In the meantime, I'm going to be stepping through the code in the debugger to try to figure it out.

- JT

  • Hi,

        If those defines are not going to be used in your program then remove it.

        But, you need to consider that maybe in the future your project would need to use these defines. So, as long you have enough flash space to cater these defines, then it is okay to leave it there. But, still depends on your preference, as you are the designer.

    - kel

  • I guess I don't know what is the minimum required to have an operational http server.  I typically like to keep it simple but as long as it works, the trimming of the fat can wait.