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.

CC3220SF-LAUNCHXL: Bug in disabling HTTP internal apis

Part Number: CC3220SF-LAUNCHXL
Other Parts Discussed in Thread: SIMPLELINK-CC32XX-SDK

Hi guys,

I need info about the bug reported in thread named "CC3220SF-LAUNCHXL: Value to use for SL_NETAPP_HTTP_ROM_PAGES_ACCESS option".

When is the new release of sdk (that fixes this bug) scheduled for? Is it already in place in the SIMPLELINK-CC32XX-SDK v3.10.00.04 (03 Apr 2019)?

Regards

Lorenzo

  • Hi Lorenzo,

    I do not have a date on this fix yet. The bug was not resolved for SDK 3.10. You can check the release notes for each SDK version from the download page: http://www.ti.com/tool/download/SIMPLELINK-CC32XX-SDK

    Michael was able to find a work-around for this issue by manually setting the port number after disabling the ROM page access:

    int32_t retVal = 0;
    uint8_t secondaryPort[] = {0x50, 0x00}; /* 0x050 = 80 */
    uint8_t APIEnable[] = {0x0};
    
    
    retVal = sl_NetAppSet(SL_NETAPP_HTTP_SERVER_ID, SL_NETAPP_HTTP_ROM_PAGES_ACCESS, sizeof(APIEnable), APIEnable);
    SetNetAppHttp(&retVal,SL_NETAPP_HTTP_PRIMARY_PORT_NUMBER, sizeof(secondaryPort), secondaryPort);

    Best regards,

    Sarah