1. 程式人生 > >【Z-Stack】發送數據函數“afStatus_t AF_DataRequest”參數解讀

【Z-Stack】發送數據函數“afStatus_t AF_DataRequest”參數解讀

設置 message 自己的 如果 tac 應用 掩碼 code class

Z-Stack 中發送數據通過在應用層調用函數

void SampleApp_SendFlashMessage( uint16 flashTime )

完成,其中flash Time 為發送的數據,這個函數在應用中通過調用

afStatus_t  AF_DataRequest( afAddrType_t *dstAddr, endPointDesc_t *srcEP, uint16 cID, uint16 len, uint8 *buf, uint8 *transID, uint8 options, uint8 radius ) 

函數完成數據的發送。如果熟悉了其中的每個參數的含義,就可以很靈活的使用發送函數發送自己的數據。

afAddrType_t *dstAddr:目標地址

endPointDesc_t *srcEP:源端點

uint16 cID:簇ID

uint16 len:發送數據的長度

uint8 *buf:發送數據緩沖區

uint8 *transID:任務ID號

uint8 options:有效位掩碼的發送選項

uint8 radius:傳送跳數,通常設置為AF_DEFAULT_RADIUS

【Z-Stack】發送數據函數“afStatus_t AF_DataRequest”參數解讀