用z-stack3.0 写了coordinate 的code,集成zha1.2终端门锁。
发现问题:coordinate 一直触发 zmac.c里面的ZMacSendNoData 发送 nodata数据包?
请问TI 员工:是什么触发coordinate 发送 nodata数据包?
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.
请问vv
我通过抓包文件分析是ACK包中 Frame Pending在作祟。
uint8 MAC_SrcMatchCheckAllPending ( void )
{
if( macSrcMatchIsAckAllPending == TRUE )
{
return MAC_AUTOACK_PENDING_ALL_ON;
}
return MAC_AUTOACK_PENDING_ALL_OFF;
}
Zigbee3.0 coordinate为什么 在检测这个bit时 会返回MAC_AUTOACK_PENDING_ALL_ON该数值
而zigbee1.2.2.a coordinate 在检测这个bit时 返回 MAC_AUTOACK_PENDING_ALL_OFF;
是什么造成了 macSrcMatchIsAckAllPending 的变化?