From 8421b451f706203a826422735cff8b67ccd12578 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Wed, 23 Apr 2025 19:57:31 +0100 Subject: [PATCH] Revert "Make doxygen buildable again (#2423)" (#2437) This reverts commit 65a8907828ad87acd6a8e3363f175a64337b65cd. --- src/rp2_common/pico_lwip/doc.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/rp2_common/pico_lwip/doc.h b/src/rp2_common/pico_lwip/doc.h index 7f8bbfd0..bbf35338 100644 --- a/src/rp2_common/pico_lwip/doc.h +++ b/src/rp2_common/pico_lwip/doc.h @@ -51,13 +51,19 @@ * * This library enables you to make use of the LwIP HTTP client and server library * + * \par LwIP HTTP server + * * To make use of the LwIP HTTP server you need to provide the HTML that the server will return to the client. * This is done by compiling the content directly into the executable. * + * \par makefsdata + * * LwIP provides a c-library tool `makefsdata` to compile your HTML into a source file for inclusion into your program. * This is quite hard to use as you need to compile the tool as a native binary, then run the tool to generate a source file * before compiling your code for the Pico device. * + * \par pico_set_lwip_httpd_content + * * To make this whole process easier, a python script `makefsdata.py` is provided to generate a source file for your HTML content. * A CMake function `pico_set_lwip_httpd_content` takes care of running the `makefsdata.py` python script for you. * To make use of this, specify the name of the source file as `pico_fsdata.inc` in `lwipopts.h`.