Doxyfile 5.7 KB

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