mirror of
https://github.com/espressif/openthread.git
synced 2026-08-04 09:57:47 +00:00
Add support to handle 'CHANNEL_ACCESS_FAILURE' and 'NO_ACK' results from the PHY layer. (#67)
This commit is contained in:
@@ -62,6 +62,18 @@ typedef enum ThreadError
|
||||
kThreadError_NotImplemented = 13,
|
||||
kThreadError_InvalidState = 14,
|
||||
kThreadError_NoTasklets = 15,
|
||||
|
||||
/**
|
||||
* No acknowledgment was received after macMaxFrameRetries (IEEE 802.15.4-2006).
|
||||
*/
|
||||
kThreadError_NoAck = 16,
|
||||
|
||||
/**
|
||||
* A transmission could not take place due to activity on the channel, i.e., the CSMA-CA mechanism has failed
|
||||
* (IEEE 802.15.4-2006).
|
||||
*/
|
||||
kThreadError_ChannelAccessFailure = 17,
|
||||
|
||||
kThreadError_Error = 255,
|
||||
} ThreadError;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user