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.

CCS/TIDC-CC3200MODLAUNCHXL: TIDC-CC3200MODLAUNCHXL

Part Number: TIDC-CC3200MODLAUNCHXL
Other Parts Discussed in Thread: CC3200MOD

Tool/software: Code Composer Studio

Hi,

I am working on CC3200mod launchpad and using one of the sample application "Http-Client_demo". I need to know how can I modify the library files like 'httpcli.c' as I need to change buffer size and some other parameters. I tried to change it directly but it still compiles the default code.

What changes I need to make in order to modify the sample application accordingy?

Best regards,
Nikhil Chauhan

  • Hi Nikhil,

    If you imported the WebClient project from the SDK (under <sdk-root>/netapps/http/client), you should be able to change and rebuild the webclient.a.

    Depending on your settings when you imported the project the library can be built in the SDK (overriding the original binary) or in your workspace.

    If you chose to built the project in the workspace, then you need to update the linker setting in your application (Project Properties/ARM Linker/File Search Path) to point to the newly created lib (typically under <workspace>/webclient/HTTPClientFullLib/).

    Br,

    Kobi

  • Hi Kobi,

    I have imported "http_client_demo" project from SDK and build it in workspace but I am not able to compile the changes. I am debugging it step by step to see the changes but the variable size remains same even after changes. It should overwrite the library files as per the changes but no significant change is made in the lib file.

    Below is the ARM linker file search path for my project.

    Can you please tell me if I am missing out on something?

    Thanks and regards,

    Nikhil

  • I don't understand what are you trying to do.

    Are you changing one of the application files or one of the library files?

    If you are trying to change a library file, you better import the library (uncheck the "copy projects to workspace") and update the file there.

    Then you should build the library and then the application.

    Br,

    Kobi