采用CC2652 LaunchPad使用zc_ota_server_CC26X2R1_LAUNCHXL_tirtos_iar工程做协调器,zed OTA成功后新的镜像已经生效,在Beacon完成后发送了Rejoin Request并收到Mac Ack,分析Rejoin Request中的NWK Frame Counter的计数也是合理值,但没有Rejoin Response。
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.
采用CC2652 LaunchPad使用zc_ota_server_CC26X2R1_LAUNCHXL_tirtos_iar工程做协调器,zed OTA成功后新的镜像已经生效,在Beacon完成后发送了Rejoin Request并收到Mac Ack,分析Rejoin Request中的NWK Frame Counter的计数也是合理值,但没有Rejoin Response。
这是个已知问题:
打上如下补丁:
#include “nwk_util.h”
...
static void stackInit(void)
{
...
// Initialize basic NV items
zgInit();
// Since the AF isn't a task, call it's initialization routine
afInit();
stackServiceFxnsInit();
//Initialize default poll rates
nwk_InitializeDefaultPollRates();
osal_nv_write(ZCD_NV_POLL_RATE,0, sizeof(nwk_pollRateTable), &nwk_pollRateTable);
/* Initialize MAC buffer */
macLowLevelBufferInit();
...
}