From b01b26a18ae78eed453d7e9c2e47a2078d2093dc Mon Sep 17 00:00:00 2001 From: gavinmcgovern <81183035+gavinmcgovern@users.noreply.github.com> Date: Wed, 24 Mar 2021 10:35:22 -0700 Subject: [PATCH] [ping-sender] adding missing doxygen tags (#6330) --- doc/ot_api_doc.h | 1 + include/openthread/instance.h | 2 +- include/openthread/ping_sender.h | 15 +++++++++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/doc/ot_api_doc.h b/doc/ot_api_doc.h index 9ab5e1947..af7348e3b 100644 --- a/doc/ot_api_doc.h +++ b/doc/ot_api_doc.h @@ -57,6 +57,7 @@ * @defgroup api-icmp6 ICMPv6 * @defgroup api-ip6 IPv6 * @defgroup api-srp SRP + * @defgroup api-ping-sender Ping Sender * @defgroup api-udp-group UDP * * @{ diff --git a/include/openthread/instance.h b/include/openthread/instance.h index b082a349f..1b73e2949 100644 --- a/include/openthread/instance.h +++ b/include/openthread/instance.h @@ -53,7 +53,7 @@ extern "C" { * @note This number versions both OpenThread platform and user APIs. * */ -#define OPENTHREAD_API_VERSION (86) +#define OPENTHREAD_API_VERSION (87) /** * @addtogroup api-instance diff --git a/include/openthread/ping_sender.h b/include/openthread/ping_sender.h index 61220dff2..61f4b0586 100644 --- a/include/openthread/ping_sender.h +++ b/include/openthread/ping_sender.h @@ -45,6 +45,16 @@ extern "C" { #endif +/** + * @addtogroup api-ping-sender + * + * @brief + * This file includes the OpenThread API for the ping sender module. + * + * @{ + * + */ + /** * This structure represents a ping reply. * @@ -105,6 +115,11 @@ otError otPingSenderPing(otInstance *aInstance, const otPingSenderConfig *aConfi */ void otPingSenderStop(otInstance *aInstance); +/** + * @} + * + */ + #ifdef __cplusplus } // extern "C" #endif