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.

Zigbee路由中继功能疑问

我现在路由发送数据到协调器的时候是指定短地址 0x0000(协调器网络短地址)

    SampleApp_Periodic_DstAddr.addrMode = afAddr16Bit;
    SampleApp_Periodic_DstAddr.endPoint = SAMPLEAPP_ENDPOINT;
    SampleApp_Periodic_DstAddr.addr.shortAddr = 0x0000;
   
    if ( AF_DataRequest( &SampleApp_Periodic_DstAddr, &SampleApp_epDesc,
                        SAMPLEAPP_PERIODIC_CLUSTERID,
                        len,
                        (uint8_t *)data,
                        &SampleApp_TransID,
                        AF_DISCV_ROUTE,
                        AF_DEFAULT_RADIUS ) == afStatus_SUCCESS )
    {
    }

现在测试路由直连协调器的时候收发数据没问题,但是现在发现好像不能走中继,距离远了之后,中间加一个同样的路由器之后  不能实现收发数据了

想问一下大家,路由器给协调器发送数据,直接指定目的地址为0x0000不可以走中继吗?