Doxyfile 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 = "esp-epaper-29-ws"
  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. ../components/epaper-29-ws/epaper-29-ws.h
  21. ## Get warnings for functions that have no documentation for their parameters or return value
  22. ##
  23. WARN_NO_PARAMDOC = YES
  24. ## Enable preprocessing and remove __attribute__(...) expressions from the INPUT files
  25. ##
  26. ENABLE_PREPROCESSING = YES
  27. MACRO_EXPANSION = YES
  28. EXPAND_ONLY_PREDEF = YES
  29. PREDEFINED = __attribute__(x)=
  30. ## Do not complain about not having dot
  31. ##
  32. HAVE_DOT = NO
  33. ## Generate XML that is required for Breathe
  34. ##
  35. GENERATE_XML = YES
  36. XML_OUTPUT = xml
  37. GENERATE_HTML = NO
  38. HAVE_DOT = NO
  39. GENERATE_LATEX = NO
  40. GENERATE_MAN = YES
  41. GENERATE_RTF = NO
  42. ## Skip distracting progress messages
  43. ##
  44. QUIET = YES
  45. ## Log warnings in a file for further review
  46. ##
  47. WARN_LOGFILE = "doxygen-warning-log.txt"