void zb_FindDeviceConfirm( uint8 searchType, uint8 *searchKey, uint8 *result )
{
// Add your code here and remove the "(void)" lines.
(void)searchType;
(void)searchKey;
(void)result;
}
void zb_ReceiveDataIndication( uint16 source, uint16 command, uint16 len, uint8 *pData )
{
// Add your code here and remove the "(void)" lines.
(void)source;
(void)command;
(void)len;
(void)pData;
}
在zigbee协议栈里面有很多这种程序,看得不懂,这是什么机理?函数调用? |