Kconfig.projbuild 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. menu "Example Configuration"
  2. config MDNS_HOSTNAME
  3. string "mDNS Hostname"
  4. default "esp32-mdns"
  5. help
  6. mDNS Hostname for example to use
  7. config MDNS_INSTANCE
  8. string "mDNS Instance Name"
  9. default "ESP32 with mDNS"
  10. help
  11. mDNS Instance Name for example to use
  12. config MDNS_PUBLISH_DELEGATE_HOST
  13. bool "Publish a delegated host"
  14. help
  15. Enable publishing a delegated host other than ESP32.
  16. The example will also add a mock service for this host.
  17. config MDNS_RESOLVE_TEST_SERVICES
  18. bool "Resolve test services"
  19. default n
  20. help
  21. Enable resolving test services on startup.
  22. These services are advertized and evaluated in automated tests.
  23. When executed locally, these will not be resolved and warnings appear in the log.
  24. Please set to false to disable initial querying to avoid warnings.
  25. config MDNS_ADD_MAC_TO_HOSTNAME
  26. bool "Add mac suffix to hostname"
  27. default n
  28. help
  29. If enabled, a portion of MAC address is added to the hostname, this is used
  30. for evaluation of tests in CI
  31. endmenu