Doxyfile 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. INPUT = ../components/esp32/include/esp_wifi.h \
  16. ../components/driver/include/driver \
  17. ../components/bt/include \
  18. ../components/bt/bluedroid/api/include \
  19. ../components/nvs_flash/include \
  20. ../components/log/include \
  21. ../components/vfs/include \
  22. ../components/spi_flash/include \
  23. ../components/esp32/include/esp_int_wdt.h \
  24. ../components/esp32/include/esp_task_wdt.h \
  25. ../components/app_update/include/esp_ota_ops.h \
  26. ../components/ethernet/include/esp_eth.h \
  27. ../components/ulp/include/esp32/ulp.h \
  28. ../components/esp32/include/esp_intr_alloc.h \
  29. ../components/esp32/include/esp_heap_alloc_caps.h \
  30. ../components/freertos/include/freertos/heap_regions.h \
  31. ../components/esp32/include/esp_smartconfig.h \
  32. ../components/esp32/include/esp_deep_sleep.h \
  33. ../components/sdmmc/include/sdmmc_cmd.h \
  34. ../components/fatfs/src/esp_vfs_fat.h \
  35. ../components/fatfs/src/diskio.h \
  36. ../components/esp32/include/esp_core_dump.h \
  37. ../components/mdns/include/mdns.h \
  38. ../components/bootloader_support/include/esp_flash_encrypt.h \
  39. ../components/wear_levelling/include/wear_levelling.h
  40. ## Get warnings for functions that have no documentation for their parameters or return value
  41. ##
  42. WARN_NO_PARAMDOC = YES
  43. ## Do not complain about not having dot
  44. ##
  45. HAVE_DOT = NO
  46. ## Generate XML that is required for Breathe
  47. ##
  48. GENERATE_XML = YES
  49. XML_OUTPUT = xml
  50. GENERATE_HTML = NO
  51. HAVE_DOT = NO
  52. GENERATE_LATEX = NO
  53. GENERATE_MAN = YES
  54. GENERATE_RTF = NO
  55. ## Skip distracting progress messages
  56. ##
  57. QUIET = YES
  58. ## Log warnings in a file for further review
  59. ##
  60. WARN_LOGFILE = "doxygen-warning-log.txt"