]> granicus.if.org Git - esp-idf/blob - docs/Doxyfile
Merge branch 'bugfix/sdspi_docs' into 'master'
[esp-idf] / docs / Doxyfile
1 # This is Doxygen configuration file
2 #
3 # Doxygen provides over 260 configuration statements
4 # To make this file easier to follow,
5 # it contains only statements that are non-default
6 #
7 # NOTE:
8 # It is recommended not to change defaults unless specifically required
9 # Test any changes how they affect generated documentation
10 # Make sure that correct warnings are generated to flag issues with documented code
11 #
12 # For the complete list of configuration statements see:
13 # http://www.stack.nl/~dimitri/doxygen/manual/config.html
14
15
16 PROJECT_NAME = "ESP32 Programming Guide"
17
18 ## The 'INPUT' statement below is used as input by script 'gen-df-input.py'
19 ## to automatically generate API reference list files heder_file.inc
20 ## These files are placed in '_inc' directory
21 ## and used to include in API reference documentation
22
23 INPUT = \
24     ##
25     ## Wi-Fi - API Reference
26     ##
27     ../components/esp32/include/esp_wifi.h \
28     ../components/esp32/include/esp_smartconfig.h \
29     ## Bluetooth - API Reference
30     ## Controller && VHCI
31     ../components/bt/include/bt.h \
32     ## Bluetooth COMMON
33     ## Issue with __attribute__
34     ../components/bt/bluedroid/api/include/esp_bt_defs.h \
35     ../components/bt/bluedroid/api/include/esp_bt_main.h \
36     ../components/bt/bluedroid/api/include/esp_bt_device.h \
37     ## Bluetooth LE
38     ../components/bt/bluedroid/api/include/esp_gap_ble_api.h \
39     ## Issue with __attribute__
40     ../components/bt/bluedroid/api/include/esp_gatt_defs.h \
41     ../components/bt/bluedroid/api/include/esp_gatts_api.h \
42     ../components/bt/bluedroid/api/include/esp_gattc_api.h \
43     ../components/bt/bluedroid/api/include/esp_blufi_api.h \
44     ## Bluetooth Classic
45     ../components/bt/bluedroid/api/include/esp_gap_bt_api.h \
46     ## Issue with __attribute__
47     ../components/bt/bluedroid/api/include/esp_a2dp_api.h \
48     ../components/bt/bluedroid/api/include/esp_avrc_api.h \
49     ##
50     ## Ethernet - API Reference
51     ##
52     ../components/ethernet/include/esp_eth.h \
53     ../components/ethernet/include/eth_phy/phy.h \
54     ../components/ethernet/include/eth_phy/phy_tlk110.h \
55     ../components/ethernet/include/eth_phy/phy_lan8720.h \
56     ##
57     ## Peripherals - API Reference
58     ##
59     ../components/driver/include/driver/adc.h \
60     ../components/driver/include/driver/dac.h \
61     ../components/driver/include/driver/gpio.h \
62     ../components/driver/include/driver/rtc_io.h \
63     ../components/driver/include/driver/i2c.h \
64     ../components/driver/include/driver/i2s.h \
65     ../components/driver/include/driver/ledc.h \
66     ../components/driver/include/driver/mcpwm.h \
67     ../components/driver/include/driver/pcnt.h \
68     ../components/driver/include/driver/rmt.h \
69     ../components/driver/include/driver/sigmadelta.h \
70     ../components/driver/include/driver/spi_common.h \
71     ../components/driver/include/driver/spi_master.h \
72     ../components/driver/include/driver/spi_slave.h \
73     ../components/driver/include/driver/timer.h \
74     ../components/driver/include/driver/uart.h \
75     ##
76     ## Protocols - API Reference
77     ##
78     ../components/mdns/include/mdns.h \
79     ##
80     ## Storage - API Reference
81     ##
82     ## SPI Flash and Partition APIs
83     ../components/spi_flash/include/esp_spi_flash.h \
84     ../components/spi_flash/include/esp_partition.h \
85     ../components/bootloader_support/include/esp_flash_encrypt.h \
86     ## SD/MMC Card Host
87     ## NOTE: for three lines below header_file.inc is not used
88     ../components/sdmmc/include/sdmmc_cmd.h \
89     ../components/driver/include/driver/sdmmc_host.h \
90     ../components/driver/include/driver/sdmmc_types.h \
91     ../components/driver/include/driver/sdspi_host.h \
92     ## Non-Volatile Storage
93     ../components/nvs_flash/include/nvs.h \
94     ../components/nvs_flash/include/nvs_flash.h \
95     ## Virtual Filesystem
96     ../components/vfs/include/esp_vfs.h \
97     ../components/vfs/include/esp_vfs_dev.h \
98     ## FAT Filesystem
99     ## NOTE: for two lines below header_file.inc is not used
100     ../components/fatfs/src/esp_vfs_fat.h \
101     ../components/fatfs/src/diskio.h \
102     ## Wear Levelling
103     ../components/wear_levelling/include/wear_levelling.h \
104     ##
105     ## System - API Reference
106     ##
107     ## Memory Allocation    #
108     ../components/heap/include/esp_heap_caps.h \
109     ../components/heap/include/multi_heap.h \
110     ## Interrupt Allocation
111     ../components/esp32/include/esp_intr_alloc.h \
112     ## Watchdogs
113     ## NOTE: for two lines below header_file.inc is not used
114     ../components/esp32/include/esp_int_wdt.h \
115     ../components/esp32/include/esp_task_wdt.h \
116     ## Over The Air Updates (OTA)
117     ../components/app_update/include/esp_ota_ops.h \
118     ## Deep Sleep
119     ## NOTE: for line below header_file.inc is not used
120     ../components/esp32/include/esp_deep_sleep.h \
121     ## Logging
122     ../components/log/include/esp_log.h \
123     ## Base MAC address
124     ## NOTE: for line below header_file.inc is not used
125     ../components/esp32/include/esp_system.h \
126     ##
127     ## ULP Coprocessor - API Guides
128     ##
129     ## NOTE: for line below header_file.inc is not used
130     ../components/ulp/include/esp32/ulp.h \
131     ##
132     ## Application Level Tracing - API Reference
133     ##
134     ../components/app_trace/include/esp_app_trace.h
135
136
137 ## Get warnings for functions that have no documentation for their parameters or return value
138 ##
139 WARN_NO_PARAMDOC = YES
140
141 ## Enable preprocessing and remove __attribute__(...) expressions from the INPUT files
142 ##
143 ENABLE_PREPROCESSING   = YES
144 MACRO_EXPANSION        = YES
145 EXPAND_ONLY_PREDEF     = YES
146 PREDEFINED             = __attribute__(x)=
147
148 ## Do not complain about not having dot
149 ##
150 HAVE_DOT = NO
151
152 ## Generate XML that is required for Breathe
153 ##
154 GENERATE_XML    = YES
155 XML_OUTPUT      = xml
156
157 GENERATE_HTML   = NO
158 HAVE_DOT        = NO
159 GENERATE_LATEX  = NO
160 GENERATE_MAN    = YES
161 GENERATE_RTF    = NO
162
163 ## Skip distracting progress messages
164 ##
165 QUIET = YES
166 ## Log warnings in a file for further review
167 ##
168 WARN_LOGFILE = "doxygen-warning-log.txt"
169