1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/include/net/netstats: re-order result codes

This commit is contained in:
Benjamin Valentin 2024-11-18 17:03:40 +01:00
parent 6a1f1baddf
commit e4c3514957

View File

@ -32,9 +32,9 @@ extern "C" {
* @{
*/
typedef enum {
NETSTATS_NB_BUSY, /**< Failed due to medium busy */
NETSTATS_NB_SUCCESS = 0,/**< Successful transmission */
NETSTATS_NB_NOACK, /**< Failed due to no ack received */
NETSTATS_NB_SUCCESS, /**< Successful transmission */
NETSTATS_NB_BUSY, /**< Failed due to medium busy */
} netstats_nb_result_t;
/** @} */