From 57e54e254dbda1c0a4a8fd88eb37bbec33c2b1d0 Mon Sep 17 00:00:00 2001 From: Fabian Nack Date: Tue, 7 Oct 2014 10:31:05 +0200 Subject: [PATCH] drivers - netdev: extend netdev_state_t enum --- drivers/include/netdev/base.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/include/netdev/base.h b/drivers/include/netdev/base.h index 1981b9ad24..8e423b4e81 100644 --- a/drivers/include/netdev/base.h +++ b/drivers/include/netdev/base.h @@ -134,6 +134,8 @@ typedef enum { NETDEV_STATE_PROMISCUOUS_MODE, /**< Device is in receive mode and accepts all packets without regard for their destination */ + NETDEV_STATE_TX_BURST, /**< Device is burst sending and + does not accept packets */ } netdev_state_t; /**