mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #13725 from miri64/gnrc_netif/doc/out-params
gnrc_netif: document new *_create() out parameter as such
This commit is contained in:
commit
18c4cfe2ec
@ -27,7 +27,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates the ESP-NOW network interface
|
||||
* @see gnrc_netif_create
|
||||
* @param [in] netif The interface. May not be `NULL`.
|
||||
* @param [out] netif The interface. May not be `NULL`.
|
||||
* @param [in] stack The stack for the network interface's thread.
|
||||
* @param [in] stacksize Size of stack.
|
||||
* @param [in] priority Priority for the network interface's thread.
|
||||
|
@ -115,7 +115,7 @@ typedef struct netdev_radio_rx_info cc1xxx_rx_info_t;
|
||||
/**
|
||||
* @brief Creates a CC110x/CC1200 network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
@ -27,7 +27,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates an Xbee network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
@ -354,7 +354,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates an IEEE 802.15.4 GoMacH network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the GoMacH network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the GoMacH network interface's thread.
|
||||
|
@ -300,7 +300,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates an IEEE 802.15.4 LWMAC network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the LWMAC network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the LWMAC network interface's thread.
|
||||
|
@ -246,7 +246,7 @@ void gnrc_netif_init_devs(void);
|
||||
/**
|
||||
* @brief Creates a network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
@ -27,7 +27,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates an Ethernet network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
@ -27,7 +27,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates an IEEE 802.15.4 network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
@ -27,7 +27,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates a raw network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
@ -28,7 +28,7 @@ extern "C" {
|
||||
/**
|
||||
* @brief Creates a raw network interface
|
||||
*
|
||||
* @param[in] netif The interface. May not be `NULL`.
|
||||
* @param[out] netif The interface. May not be `NULL`.
|
||||
* @param[in] stack The stack for the network interface's thread.
|
||||
* @param[in] stacksize Size of @p stack.
|
||||
* @param[in] priority Priority for the network interface's thread.
|
||||
|
Loading…
Reference in New Issue
Block a user