Skip to content

Commit

Permalink
Merge branch 'docs/add_parameter_description_to_esp_netif' into 'master'
Browse files Browse the repository at this point in the history
docs: add parameter description to esp_netif.h

See merge request espressif/esp-idf!26487
  • Loading branch information
Lindazhxy committed Oct 19, 2023
2 parents 9f379b2 + 6c86424 commit dffe28b
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions components/esp_netif/include/esp_netif.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ esp_err_t esp_netif_receive(esp_netif_t *esp_netif, void *buffer, size_t len, vo
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_start(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -173,9 +173,9 @@ void esp_netif_action_start(void *esp_netif, esp_event_base_t base, int32_t even
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_stop(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -185,9 +185,9 @@ void esp_netif_action_stop(void *esp_netif, esp_event_base_t base, int32_t event
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_connected(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -197,9 +197,9 @@ void esp_netif_action_connected(void *esp_netif, esp_event_base_t base, int32_t
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_disconnected(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -209,9 +209,9 @@ void esp_netif_action_disconnected(void *esp_netif, esp_event_base_t base, int32
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_got_ip(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -221,9 +221,9 @@ void esp_netif_action_got_ip(void *esp_netif, esp_event_base_t base, int32_t eve
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_join_ip6_multicast_group(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -233,9 +233,9 @@ void esp_netif_action_join_ip6_multicast_group(void *esp_netif, esp_event_base_t
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_leave_ip6_multicast_group(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -245,9 +245,9 @@ void esp_netif_action_leave_ip6_multicast_group(void *esp_netif, esp_event_base_
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_add_ip6_address(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand All @@ -257,9 +257,9 @@ void esp_netif_action_add_ip6_address(void *esp_netif, esp_event_base_t base, in
* @note This API can be directly used as event handler
*
* @param[in] esp_netif Handle to esp-netif instance
* @param base
* @param event_id
* @param data
* @param base The base type of the event
* @param event_id The specific ID of the event
* @param data Optional data associated with the event
*/
void esp_netif_action_remove_ip6_address(void *esp_netif, esp_event_base_t base, int32_t event_id, void *data);

Expand Down

0 comments on commit dffe28b

Please sign in to comment.