From b01c8570e556a83516e8f70e8c427987d0c8752a Mon Sep 17 00:00:00 2001 From: Qinghao Shi Date: Wed, 31 Oct 2018 14:49:21 +0000 Subject: [PATCH 1/2] exclude vendor's EMAC driver from doxy --- doxyfile_options | 1 + 1 file changed, 1 insertion(+) diff --git a/doxyfile_options b/doxyfile_options index b8c8b170650..c865e127c2f 100644 --- a/doxyfile_options +++ b/doxyfile_options @@ -849,6 +849,7 @@ EXCLUDE_PATTERNS = */tools/* \ */features/lwipstack/* \ */features/nanostack/sal-stack-nanostack/* \ */features/nanostack/coap-service/* \ + */features/netsocket/emac-drivers/* \ */mbed-trace/* \ */mbed-coap/* \ */nanostack-libservice/* \ From 60cc0c295d9006a87752d21770d23836e44a5a93 Mon Sep 17 00:00:00 2001 From: Qinghao Shi Date: Wed, 31 Oct 2018 14:50:59 +0000 Subject: [PATCH 2/2] fixed NetworkInterface Class missing in doxy --- features/netsocket/NetworkInterface.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/features/netsocket/NetworkInterface.h b/features/netsocket/NetworkInterface.h index 7d1087a2d03..6338dbaa62f 100644 --- a/features/netsocket/NetworkInterface.h +++ b/features/netsocket/NetworkInterface.h @@ -33,7 +33,8 @@ class EMACInterface; /** Common interface that is shared between network devices. * - * @addtogroup netsocket + * @\addtogroup netsocket + * @{ */ class NetworkInterface: public DNS { public: @@ -331,5 +332,5 @@ class NetworkInterface: public DNS { #endif //!defined(DOXYGEN_ONLY) }; - +/** @}*/ #endif