This guide explains how to generate HTML documentation for the SDK header files using the provided automation script.
We have provided a batch script to automate the entire process. It will configure the environment, run Doxygen on all .h files in this directory, and open the results.
powershell cd c:\Users\<User>\<path to the folder> powershell .\generate_doxy_html_docs.bat What the script does:
.h files in the current directory.html/ folder.html/index.html in your default web browser.The documentation is generated directly from the source code comments.
.h file (e.g., gpio.h, i2c.h) and modify the Doxygen-style comments (blocks starting with /** or commands like \brief, \details).snippets/ folder. You can edit these .c files to update the examples shown in the docs.generate_doxy_html_docs.bat again to see your updates.*.h: Header files containing the API definitions and documentation comments.snippets/: Contains code examples referenced by \snippet commands in the header files.generate_doxy_html_docs.bat: The script to build the documentation.