Doxyfile 6.1 KB

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