Kconfig.projbuild 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. menu "Example Configuration"
  2. config TEST_MDNS_HOSTNAME
  3. string "mDNS Hostname"
  4. default "esp32-mdns"
  5. help
  6. mDNS Hostname for example to use
  7. config TEST_MDNS_INSTANCE
  8. string "mDNS Instance Name"
  9. default "ESP32 with mDNS"
  10. help
  11. mDNS Instance Name for example to use
  12. config TEST_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 TEST_MDNS_ADD_MAC_TO_HOSTNAME
  18. bool "Add mac suffix to hostname"
  19. default n
  20. help
  21. If enabled, a portion of MAC address is added to the hostname, this is used
  22. for evaluation of tests in CI
  23. config MDNS_ADD_MAC_TO_HOSTNAME
  24. bool "Add mac suffix to hostname"
  25. default n
  26. help
  27. If enabled, a portion of MAC address is added to the hostname, this is used
  28. for evaluation of tests in CI
  29. config MDNS_PUBLISH_DELEGATE_HOST
  30. bool "Publish a delegated host"
  31. help
  32. Enable publishing a delegated host other than ESP32.
  33. The example will also add a mock service for this host.
  34. endmenu