From f55c0e7864aa29cefa10cfb4b59fd21c5dc1c445 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Sun, 7 Aug 2016 20:13:27 +0200 Subject: [PATCH] Move rawapi.txt description to main page - this doc really should be found and read by users --- doc/doxygen/lwip.Doxyfile | 2 +- doc/doxygen/main_page.h | 3 +-- src/core/raw.c | 2 +- src/core/tcp.c | 2 +- src/core/udp.c | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/doc/doxygen/lwip.Doxyfile b/doc/doxygen/lwip.Doxyfile index f9d5fc17..9f20830f 100644 --- a/doc/doxygen/lwip.Doxyfile +++ b/doc/doxygen/lwip.Doxyfile @@ -781,7 +781,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = ../../src main_page.h +INPUT = main_page.h ../../src # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/doc/doxygen/main_page.h b/doc/doxygen/main_page.h index 86f96b73..d5644405 100644 --- a/doc/doxygen/main_page.h +++ b/doc/doxygen/main_page.h @@ -57,7 +57,6 @@ */ /** - * @defgroup raw_api RAW API - * @ingroup callbackstyle_api + * @page raw_api lwIP API * @verbinclude "rawapi.txt" */ diff --git a/src/core/raw.c b/src/core/raw.c index df94c4b3..863739cb 100644 --- a/src/core/raw.c +++ b/src/core/raw.c @@ -6,7 +6,7 @@ * See also @ref raw_raw * * @defgroup raw_raw RAW - * @ingroup raw_api + * @ingroup callbackstyle_api * Implementation of raw protocol PCBs for low-level handling of * different types of protocols besides (or overriding) those * already available in lwIP.\n diff --git a/src/core/tcp.c b/src/core/tcp.c index 09286e67..63972b67 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -4,7 +4,7 @@ * See also @ref tcp_raw * * @defgroup tcp_raw TCP - * @ingroup raw_api + * @ingroup callbackstyle_api * Transmission Control Protocol for IP\n * @see @ref raw_api and @ref netconn * diff --git a/src/core/udp.c b/src/core/udp.c index e7ff246d..1e7766fc 100644 --- a/src/core/udp.c +++ b/src/core/udp.c @@ -5,7 +5,7 @@ * See also @ref udp_raw * * @defgroup udp_raw UDP - * @ingroup raw_api + * @ingroup callbackstyle_api * User Datagram Protocol module\n * @see @ref raw_api and @ref netconn */