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/CC2652P: multi-endpoint cannot start OTA

Part Number: CC2652P

Tool/software: Code Composer Studio

Hi all,

SW : simplelink_cc13x2_26x2_sdk_3_40_00_02-zed_sw

HW : CC1352P-2DK

Issue : I add second endpoint on zed_sw project and add "OTAClient_SetEndpoint(SAMPLESW_ENDPOINT_2);" on program

#if defined (OTA_CLIENT_CC26XX)
OTAClient_SetEndpoint(SAMPLESW_ENDPOINT);

OTAClient_SetEndpoint(SAMPLESW_ENDPOINT_2);
OTA_Client_Init ( appSemHandle, appServiceTaskId, gCuiHandle );
#endif

In my test, SAMPLESW_ENDPOINT can start OTA but SAMPLESW_ENDPOINT_2 return "0x81 unsupport cluster". If we change the program to 

#if defined (OTA_CLIENT_CC26XX)
OTAClient_SetEndpoint(SAMPLESW_ENDPOINT_2);

OTAClient_SetEndpoint(SAMPLESW_ENDPOINT);
OTA_Client_Init ( appSemHandle, appServiceTaskId, gCuiHandle );
#endif

SAMPLESW_ENDPOINT_2 can start OTA but SAMPLESW_ENDPOINT cannot. How to start OTA correctly for every endpoint. Thank you