ieee802154: Adds retry count to tx descriptor

This commit is contained in:
Anthony Merlino 2017-07-16 23:51:15 -04:00
parent c13bd23ed9
commit 2f89ebeebd

@ -80,11 +80,15 @@ struct ieee802154_txdesc_s
FAR struct ieee802154_data_conf_s *conf; FAR struct ieee802154_data_conf_s *conf;
enum ieee802154_frametype_e frametype; /* Frame type. Used by MAC layer to /* Frame type. Used by MAC layer to control how tx done is handled */
* control how tx done is handled */
bool framepending; /* Did the ACK have the frame pending bit enum ieee802154_frametype_e frametype;
* bit set */
uint32_t purgetime; /* Time to purge transaction */ bool framepending; /* Did the ACK have the frame pending bit set */
uint32_t purgetime; /* Time to purge transaction */
uint8_t retrycount; /* Number of remaining retries. Set to macMaxFrameRetries
* when txdescriptor is allocated
*/
/* TODO: Add slotting information for GTS transactions */ /* TODO: Add slotting information for GTS transactions */
}; };