hi,
How can I create the http server dynamic manner, ie without the XGCONF?
I mean how can I activate the http service by creating dynamic task ...
TI-RTOS - 2.10.01.38
Micro: TM4C129ENCPD...
regards
Aquino
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.
Hi Aquino,
You can use the NDK's C runtime configuration APIs to add the HTTP server to the NDK.
I would recommend the following method to get the code for this:
1. Use a temporary project (e.g. tcpEcho) and update it to add the HTTP server via XGCONF.
2. Build the project
3. The necessary C configuration code to create the HTTP server will be generated from the XGCONF configuration during the project's build.
4. Look at the generated C file to see the code you need to add. For example:
Please refer to the NDK API Guide, Appendix G for more details on the legacy runtime configuration APIs.
Steve