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

net/ng_netconf.h: fix doxygen comments

This commit is contained in:
Thomas Eichinger 2015-02-12 14:39:17 +01:00
parent 50ef37c907
commit 40062c3ac3

View File

@ -91,10 +91,18 @@ typedef enum {
typedef enum {
NETCONF_STATE_OFF = 0, /**< powered off */
NETCONF_STATE_SLEEP, /**< sleep mode */
NETCONF_STATE_IDLE, /**< idle mode */
NETCONF_STATE_RX, /**< receive mode */
NETCONF_STATE_TX, /**< transmit mode */
NETCONF_STATE_RESET, /**< reset mode */
NETCONF_STATE_IDLE, /**< idle mode,
* the device listens to receive packets */
NETCONF_STATE_RX, /**< receive mode,
* the device currently receives a packet */
NETCONF_STATE_TX, /**< transmit mode,
* set: triggers transmission of a preloaded packet
* (see *NETCONF_OPT_PRELOADING*). The resulting
* state of the network device is *NETCONF_STATE_IDLE*
* get: the network device is in the process of
* transmitting a packet */
NETCONF_STATE_RESET, /**< triggers a hardware reset. The resulting
* state of the network device is *NETCONF_STATE_IDLE* */
/* add other states if needed */
} ng_netconf_state_t;