2016-11-16 19:27:55 +00:00
|
|
|
# This is Doxygen configuration file
|
|
|
|
#
|
|
|
|
# Doxygen provides over 260 configuration statements
|
|
|
|
# To make this file easier to follow,
|
|
|
|
# it contains only statements that are non-default
|
|
|
|
#
|
|
|
|
# NOTE:
|
|
|
|
# It is recommended not to change defaults unless specifically required
|
|
|
|
# Test any changes how they affect generated documentation
|
|
|
|
# Make sure that correct warnings are generated to flag issues with documented code
|
|
|
|
#
|
|
|
|
# For the complete list of configuration statements see:
|
|
|
|
# http://www.stack.nl/~dimitri/doxygen/manual/config.html
|
|
|
|
|
|
|
|
|
2016-10-26 19:08:36 +00:00
|
|
|
PROJECT_NAME = "ESP32 Programming Guide"
|
2016-10-29 21:00:30 +00:00
|
|
|
|
2016-11-16 13:33:04 +00:00
|
|
|
INPUT = ../components/esp32/include/esp_wifi.h \
|
|
|
|
../components/driver/include/driver \
|
|
|
|
../components/bt/include \
|
2016-12-01 12:20:22 +00:00
|
|
|
../components/bt/bluedroid/api/include \
|
2016-11-16 13:33:04 +00:00
|
|
|
../components/nvs_flash/include \
|
|
|
|
../components/log/include \
|
|
|
|
../components/vfs/include \
|
2016-11-17 12:21:12 +00:00
|
|
|
../components/spi_flash/include \
|
|
|
|
../components/esp32/include/esp_int_wdt.h \
|
2016-11-28 05:53:03 +00:00
|
|
|
../components/esp32/include/esp_task_wdt.h \
|
|
|
|
../components/app_update/include/esp_ota_ops.h
|
2016-10-29 21:00:30 +00:00
|
|
|
|
2016-11-16 19:27:55 +00:00
|
|
|
## Get warnings for functions that have no documentation for their parameters or return value
|
|
|
|
##
|
|
|
|
WARN_NO_PARAMDOC = YES
|
2016-10-29 21:00:30 +00:00
|
|
|
|
2016-11-16 19:27:55 +00:00
|
|
|
## Do not complain about not having dot
|
|
|
|
##
|
|
|
|
HAVE_DOT = NO
|
2016-10-29 21:00:30 +00:00
|
|
|
|
2016-11-16 19:27:55 +00:00
|
|
|
## Generate XML that is required for Breathe
|
|
|
|
##
|
|
|
|
GENERATE_XML = YES
|
|
|
|
XML_OUTPUT = xml
|
2016-10-29 21:00:30 +00:00
|
|
|
|
|
|
|
GENERATE_HTML = NO
|
|
|
|
HAVE_DOT = NO
|
|
|
|
GENERATE_LATEX = NO
|
2016-11-15 17:35:09 +00:00
|
|
|
GENERATE_MAN = YES
|
2016-10-29 21:00:30 +00:00
|
|
|
GENERATE_RTF = NO
|
|
|
|
|
2016-11-16 19:27:55 +00:00
|
|
|
## Skip distracting progress messages
|
|
|
|
##
|
|
|
|
QUIET = YES
|
|
|
|
## Log warnings in a file for further review
|
|
|
|
##
|
2016-10-29 21:00:30 +00:00
|
|
|
WARN_LOGFILE = "doxygen-warning-log.txt"
|