Doxyfile 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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. PROJECT_NAME = "ESP32 Programming Guide"
  15. ## The 'INPUT' statement below is used as input by script 'gen-df-input.py'
  16. ## to automatically generate API reference list files heder_file.inc
  17. ## These files are placed in '_inc' directory
  18. ## and used to include in API reference documentation
  19. INPUT = \
  20. ##
  21. ## Wi-Fi - API Reference
  22. ##
  23. ../../components/esp32/include/esp_wifi.h \
  24. ../../components/esp32/include/esp_wifi_types.h \
  25. ../../components/esp32/include/esp_smartconfig.h \
  26. ../../components/esp32/include/esp_now.h \
  27. ## Bluetooth - API Reference
  28. ## Controller && VHCI
  29. ../../components/bt/include/bt.h \
  30. ## Bluetooth COMMON
  31. ## Issue with __attribute__
  32. ../../components/bt/bluedroid/api/include/esp_bt_defs.h \
  33. ../../components/bt/bluedroid/api/include/esp_bt_main.h \
  34. ../../components/bt/bluedroid/api/include/esp_bt_device.h \
  35. ## Bluetooth LE
  36. ../../components/bt/bluedroid/api/include/esp_gap_ble_api.h \
  37. ## Issue with __attribute__
  38. ../../components/bt/bluedroid/api/include/esp_gatt_defs.h \
  39. ../../components/bt/bluedroid/api/include/esp_gatts_api.h \
  40. ../../components/bt/bluedroid/api/include/esp_gattc_api.h \
  41. ../../components/bt/bluedroid/api/include/esp_blufi_api.h \
  42. ## Bluetooth Classic
  43. ../../components/bt/bluedroid/api/include/esp_gap_bt_api.h \
  44. ## Issue with __attribute__
  45. ../../components/bt/bluedroid/api/include/esp_a2dp_api.h \
  46. ../../components/bt/bluedroid/api/include/esp_avrc_api.h \
  47. ../../components/bt/bluedroid/api/include/esp_spp_api.h \
  48. ##
  49. ## Ethernet - API Reference
  50. ##
  51. ../../components/ethernet/include/esp_eth.h \
  52. ../../components/ethernet/include/eth_phy/phy.h \
  53. ../../components/ethernet/include/eth_phy/phy_tlk110.h \
  54. ../../components/ethernet/include/eth_phy/phy_lan8720.h \
  55. ##
  56. ## Peripherals - API Reference
  57. ##
  58. ../../components/driver/include/driver/adc.h \
  59. ../../components/driver/include/driver/dac.h \
  60. ../../components/driver/include/driver/gpio.h \
  61. ../../components/driver/include/driver/rtc_io.h \
  62. ../../components/driver/include/driver/i2c.h \
  63. ../../components/driver/include/driver/i2s.h \
  64. ../../components/driver/include/driver/ledc.h \
  65. ../../components/driver/include/driver/mcpwm.h \
  66. ../../components/driver/include/driver/pcnt.h \
  67. ../../components/driver/include/driver/rmt.h \
  68. ../../components/driver/include/driver/sigmadelta.h \
  69. ../../components/driver/include/driver/spi_common.h \
  70. ../../components/driver/include/driver/spi_master.h \
  71. ../../components/driver/include/driver/spi_slave.h \
  72. ../../components/driver/include/driver/timer.h \
  73. ../../components/driver/include/driver/touch_pad.h \
  74. ../../components/driver/include/driver/uart.h \
  75. ../../components/esp_adc_cal/include/esp_adc_cal.h \
  76. ../../components/soc/esp32/include/soc/adc_channel.h \
  77. ../../components/soc/esp32/include/soc/dac_channel.h \
  78. ../../components/soc/esp32/include/soc/touch_channel.h \
  79. ../../components/soc/esp32/include/soc/uart_channel.h \
  80. ../../components/soc/esp32/include/soc/rtc_gpio_channel.h \
  81. ##
  82. ## Protocols - API Reference
  83. ##
  84. ../../components/mdns/include/mdns.h \
  85. ##
  86. ## Storage - API Reference
  87. ##
  88. ## SPI Flash and Partition APIs
  89. ../../components/spi_flash/include/esp_spi_flash.h \
  90. ../../components/spi_flash/include/esp_partition.h \
  91. ../../components/bootloader_support/include/esp_flash_encrypt.h \
  92. ## SPIFFS
  93. ../../components/spiffs/include/esp_spiffs.h \
  94. ## SD/MMC Card Host
  95. ## NOTE: for three lines below header_file.inc is not used
  96. ../../components/sdmmc/include/sdmmc_cmd.h \
  97. ../../components/driver/include/driver/sdmmc_host.h \
  98. ../../components/driver/include/driver/sdmmc_types.h \
  99. ../../components/driver/include/driver/sdspi_host.h \
  100. ## Non-Volatile Storage
  101. ../../components/nvs_flash/include/nvs.h \
  102. ../../components/nvs_flash/include/nvs_flash.h \
  103. ## Virtual Filesystem
  104. ../../components/vfs/include/esp_vfs.h \
  105. ../../components/vfs/include/esp_vfs_dev.h \
  106. ## FAT Filesystem
  107. ## NOTE: for two lines below header_file.inc is not used
  108. ../../components/fatfs/src/esp_vfs_fat.h \
  109. ../../components/fatfs/src/diskio.h \
  110. ## Wear Levelling
  111. ../../components/wear_levelling/include/wear_levelling.h \
  112. ##
  113. ## System - API Reference
  114. ##
  115. ## Memory Allocation #
  116. ../../components/heap/include/esp_heap_caps.h \
  117. ../../components/heap/include/esp_heap_trace.h \
  118. ../../components/heap/include/esp_heap_caps_init.h \
  119. ../../components/heap/include/multi_heap.h \
  120. ## Interrupt Allocation
  121. ../../components/esp32/include/esp_intr_alloc.h \
  122. ## Watchdogs
  123. ## NOTE: for two lines below header_file.inc is not used
  124. ../../components/esp32/include/esp_int_wdt.h \
  125. ../../components/esp32/include/esp_task_wdt.h \
  126. ## Hooks
  127. ../../components/esp32/include/esp_freertos_hooks.h \
  128. ## Inter-Processor Call
  129. ../../components/esp32/include/esp_ipc.h \
  130. ## Over The Air Updates (OTA)
  131. ../../components/app_update/include/esp_ota_ops.h \
  132. ## Sleep
  133. ## NOTE: for line below header_file.inc is not used
  134. ../../components/esp32/include/esp_sleep.h \
  135. ## Logging
  136. ../../components/log/include/esp_log.h \
  137. ## Base MAC address
  138. ## NOTE: for line below header_file.inc is not used
  139. ../../components/esp32/include/esp_system.h \
  140. ##
  141. ## ULP Coprocessor - API Guides
  142. ##
  143. ## NOTE: for line below header_file.inc is not used
  144. ../../components/ulp/include/esp32/ulp.h \
  145. ##
  146. ## Application Level Tracing - API Reference
  147. ##
  148. ../../components/app_trace/include/esp_app_trace.h \
  149. ### Power management
  150. ../../components/esp32/include/esp_pm.h \
  151. ../../components/esp32/include/esp32/pm.h \
  152. ### esp_timer, High Resolution Timer
  153. ../../components/esp32/include/esp_timer.h \
  154. ###
  155. ### FreeRTOS
  156. ###
  157. ../../components/freertos/include/freertos/task.h \
  158. ../../components/freertos/include/freertos/queue.h \
  159. ../../components/freertos/include/freertos/semphr.h \
  160. ../../components/freertos/include/freertos/timers.h \
  161. ../../components/freertos/include/freertos/event_groups.h \
  162. ../../components/freertos/include/freertos/ringbuf.h
  163. ## Get warnings for functions that have no documentation for their parameters or return value
  164. ##
  165. WARN_NO_PARAMDOC = YES
  166. ## Enable preprocessing and remove __attribute__(...) expressions from the INPUT files
  167. ##
  168. ENABLE_PREPROCESSING = YES
  169. MACRO_EXPANSION = YES
  170. EXPAND_ONLY_PREDEF = YES
  171. PREDEFINED = \
  172. __attribute__(x)= \
  173. IRAM_ATTR= \
  174. configSUPPORT_DYNAMIC_ALLOCATION=1 \
  175. configSUPPORT_STATIC_ALLOCATION=1 \
  176. configQUEUE_REGISTRY_SIZE=1 \
  177. configUSE_RECURSIVE_MUTEXES=1 \
  178. configTHREAD_LOCAL_STORAGE_DELETE_CALLBACKS=1 \
  179. configNUM_THREAD_LOCAL_STORAGE_POINTERS=1 \
  180. configUSE_APPLICATION_TASK_TAG=1
  181. ## Do not complain about not having dot
  182. ##
  183. HAVE_DOT = NO
  184. ## Generate XML that is required for Breathe
  185. ##
  186. GENERATE_XML = YES
  187. XML_OUTPUT = xml
  188. GENERATE_HTML = NO
  189. HAVE_DOT = NO
  190. GENERATE_LATEX = NO
  191. GENERATE_MAN = YES
  192. GENERATE_RTF = NO
  193. ## Skip distracting progress messages
  194. ##
  195. QUIET = YES
  196. ## Log warnings in a file for further review
  197. ##
  198. WARN_LOGFILE = "doxygen-warning-log.txt"