Hi !
I have a question about the ZCL_SendWrite()process。
when a device(A) was finish binding with other one device(B), sometimes B need to send a write CMD to change some attribute of A,(the attribute was define as Read/Write)。
when the B process the ZCL_SendWrite() function by action a keypress, how could we (or A) catch the moment of being writed by B ?
I have try to set a debug point in the case of ZCL_CMD_WRITE on ( MSGpkt->hdr.event ==ZCL_INCOMING_MSG) at A side .
I always set a Uart debug printf out the value of attribute by key press。
when press the key in B side, there is nothing happen in A side (i mean the code was running without stop at the debug point ),i wait a long time,then i press the key in A side, printf out the value of attribute ,it was already changed!!!
so I curious about why does A could not catch the moment that his attribute was changed by other device?
is that possible to catch this moment ???