]> granicus.if.org Git - esp-idf/blob - docs/Doxyfile
add ESPNOW feature
[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 # https://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_wifi_crypto_types.h \
29     ../components/esp32/include/esp_smartconfig.h \
30     ../components/esp32/include/esp_now.h \
31     ## Bluetooth - API Reference
32     ## Controller && VHCI
33     ../components/bt/include/bt.h \
34     ## Bluetooth COMMON
35     ## Issue with __attribute__
36     ../components/bt/bluedroid/api/include/esp_bt_defs.h \
37     ../components/bt/bluedroid/api/include/esp_bt_main.h \
38     ../components/bt/bluedroid/api/include/esp_bt_device.h \
39     ## Bluetooth LE
40     ../components/bt/bluedroid/api/include/esp_gap_ble_api.h \
41     ## Issue with __attribute__
42     ../components/bt/bluedroid/api/include/esp_gatt_defs.h \
43     ../components/bt/bluedroid/api/include/esp_gatts_api.h \
44     ../components/bt/bluedroid/api/include/esp_gattc_api.h \
45     ../components/bt/bluedroid/api/include/esp_blufi_api.h \
46     ## Bluetooth Classic
47     ../components/bt/bluedroid/api/include/esp_gap_bt_api.h \
48     ## Issue with __attribute__
49     ../components/bt/bluedroid/api/include/esp_a2dp_api.h \
50     ../components/bt/bluedroid/api/include/esp_avrc_api.h \
51     ##
52     ## Ethernet - API Reference
53     ##
54     ../components/ethernet/include/esp_eth.h \
55     ../components/ethernet/include/eth_phy/phy.h \
56     ../components/ethernet/include/eth_phy/phy_tlk110.h \
57     ../components/ethernet/include/eth_phy/phy_lan8720.h \
58     ##
59     ## Peripherals - API Reference
60     ##
61     ../components/driver/include/driver/adc.h \
62     ../components/driver/include/driver/dac.h \
63     ../components/driver/include/driver/gpio.h \
64     ../components/driver/include/driver/rtc_io.h \
65     ../components/driver/include/driver/i2c.h \
66     ../components/driver/include/driver/i2s.h \
67     ../components/driver/include/driver/ledc.h \
68     ../components/driver/include/driver/mcpwm.h \
69     ../components/driver/include/driver/pcnt.h \
70     ../components/driver/include/driver/rmt.h \
71     ../components/driver/include/driver/sigmadelta.h \
72     ../components/driver/include/driver/spi_common.h \
73     ../components/driver/include/driver/spi_master.h \
74     ../components/driver/include/driver/spi_slave.h \
75     ../components/driver/include/driver/timer.h \
76     ../components/driver/include/driver/touch_pad.h \
77     ../components/driver/include/driver/uart.h \
78     ../components/esp_adc_cal/include/esp_adc_cal.h \
79     ##
80     ## Protocols - API Reference
81     ##
82     ../components/mdns/include/mdns.h \
83     ##
84     ## Storage - API Reference
85     ##
86     ## SPI Flash and Partition APIs
87     ../components/spi_flash/include/esp_spi_flash.h \
88     ../components/spi_flash/include/esp_partition.h \
89     ../components/bootloader_support/include/esp_flash_encrypt.h \
90     ## SD/MMC Card Host
91     ## NOTE: for three lines below header_file.inc is not used
92     ../components/sdmmc/include/sdmmc_cmd.h \
93     ../components/driver/include/driver/sdmmc_host.h \
94     ../components/driver/include/driver/sdmmc_types.h \
95     ../components/driver/include/driver/sdspi_host.h \
96     ## Non-Volatile Storage
97     ../components/nvs_flash/include/nvs.h \
98     ../components/nvs_flash/include/nvs_flash.h \
99     ## Virtual Filesystem
100     ../components/vfs/include/esp_vfs.h \
101     ../components/vfs/include/esp_vfs_dev.h \
102     ## FAT Filesystem
103     ## NOTE: for two lines below header_file.inc is not used
104     ../components/fatfs/src/esp_vfs_fat.h \
105     ../components/fatfs/src/diskio.h \
106     ## Wear Levelling
107     ../components/wear_levelling/include/wear_levelling.h \
108     ##
109     ## System - API Reference
110     ##
111     ## Memory Allocation    #
112     ../components/heap/include/esp_heap_caps.h \
113     ../components/heap/include/esp_heap_caps_init.h \
114     ../components/heap/include/multi_heap.h \
115     ## Interrupt Allocation
116     ../components/esp32/include/esp_intr_alloc.h \
117     ## Watchdogs
118     ## NOTE: for two lines below header_file.inc is not used
119     ../components/esp32/include/esp_int_wdt.h \
120     ../components/esp32/include/esp_task_wdt.h \
121     ## Over The Air Updates (OTA)
122     ../components/app_update/include/esp_ota_ops.h \
123     ## Sleep
124     ## NOTE: for line below header_file.inc is not used
125     ../components/esp32/include/esp_sleep.h \
126     ## Logging
127     ../components/log/include/esp_log.h \
128     ## Base MAC address
129     ## NOTE: for line below header_file.inc is not used
130     ../components/esp32/include/esp_system.h \
131     ##
132     ## ULP Coprocessor - API Guides
133     ##
134     ## NOTE: for line below header_file.inc is not used
135     ../components/ulp/include/esp32/ulp.h \
136     ##
137     ## Application Level Tracing - API Reference
138     ##
139     ../components/app_trace/include/esp_app_trace.h
140
141
142 ## Get warnings for functions that have no documentation for their parameters or return value
143 ##
144 WARN_NO_PARAMDOC = YES
145
146 ## Enable preprocessing and remove __attribute__(...) expressions from the INPUT files
147 ##
148 ENABLE_PREPROCESSING   = YES
149 MACRO_EXPANSION        = YES
150 EXPAND_ONLY_PREDEF     = YES
151 PREDEFINED             = __attribute__(x)=
152
153 ## Do not complain about not having dot
154 ##
155 HAVE_DOT = NO
156
157 ## Generate XML that is required for Breathe
158 ##
159 GENERATE_XML    = YES
160 XML_OUTPUT      = xml
161
162 GENERATE_HTML   = NO
163 HAVE_DOT        = NO
164 GENERATE_LATEX  = NO
165 GENERATE_MAN    = YES
166 GENERATE_RTF    = NO
167
168 ## Skip distracting progress messages
169 ##
170 QUIET = YES
171 ## Log warnings in a file for further review
172 ##
173 WARN_LOGFILE = "doxygen-warning-log.txt"
174