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.
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
Hi Kimi,
Can you post the solution to provide help for other users who encounter a similar issue?
Thanks,
Ryan
Ryan Brown1 You can revise "if( currentOtaEndpoint == OTA_UNUSED_ENDPOINT )" in OTAClient_SetEndpoint to allow second endpoint to register itself to make second endpoint work.