Doxyfile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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/nvs_flash/include \
  19. ../components/log/include \
  20. ../components/vfs/include \
  21. ../components/spi_flash/include \
  22. ../components/esp32/include/esp_int_wdt.h \
  23. ../components/esp32/include/esp_task_wdt.h
  24. ## Get warnings for functions that have no documentation for their parameters or return value
  25. ##
  26. WARN_NO_PARAMDOC = YES
  27. ## Do not complain about not having dot
  28. ##
  29. HAVE_DOT = NO
  30. ## Generate XML that is required for Breathe
  31. ##
  32. GENERATE_XML = YES
  33. XML_OUTPUT = xml
  34. GENERATE_HTML = NO
  35. HAVE_DOT = NO
  36. GENERATE_LATEX = NO
  37. GENERATE_MAN = YES
  38. GENERATE_RTF = NO
  39. ## Skip distracting progress messages
  40. ##
  41. QUIET = YES
  42. ## Log warnings in a file for further review
  43. ##
  44. WARN_LOGFILE = "doxygen-warning-log.txt"