Kconfig.projbuild 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. menu "Wifi Manager Configuration"
  2. config WIFI_MANAGER_TASK_PRIORITY
  3. int "RTOS Task Priority for the wifi_manager"
  4. default 1
  5. help
  6. Tasks spawn by the manager will have a priority of WIFI_MANAGER_TASK_PRIORITY-1. For this particular reason, minimum recommended task priority is 2.
  7. config WIFI_MANAGER_MAX_RETRY
  8. int "Max Retry on failed connection"
  9. default 2
  10. help
  11. Defines when a connection is lost/attempt to connect is made, how many retries should be made before giving up.
  12. config DEFAULT_AP_SSID
  13. string "Access Point SSID"
  14. default "esp32"
  15. help
  16. SSID (network name) the the esp32 will broadcast.
  17. config DEFAULT_AP_PASSWORD
  18. string "Access Point Password"
  19. default "esp32pwd"
  20. help
  21. Password used for the Access Point. Leave empty and set AUTH MODE to WIFI_AUTH_OPEN for no password.
  22. config DEFAULT_AP_CHANNEL
  23. int "Access Point WiFi Channel"
  24. default 1
  25. help
  26. Be careful you might not see the access point if you use a channel not allowed in your country.
  27. config DEFAULT_AP_IP
  28. string "Access Point IP Address"
  29. default "10.10.0.1"
  30. help
  31. This is used for the redirection to the captive portal. It is recommended to leave unchanged.
  32. config DEFAULT_AP_GATEWAY
  33. string "Access Point IP Gateway"
  34. default "10.10.0.1"
  35. help
  36. This is used for the redirection to the captive portal. It is recommended to leave unchanged.
  37. config DEFAULT_AP_NETMASK
  38. string "Access Point Netmask"
  39. default "255.255.255.0"
  40. help
  41. This is used for the redirection to the captive portal. It is recommended to leave unchanged.
  42. config DEFAULT_AP_MAX_CONNECTIONS
  43. int "Access Point Max Connections"
  44. default 4
  45. help
  46. Max is 4.
  47. config DEFAULT_AP_BEACON_INTERVAL
  48. int "Access Point Beacon Interval (ms)"
  49. default 100
  50. help
  51. 100ms is the recommended default.
  52. config DEFAULT_COMMAND_LINE
  53. string "Default command line to execute"
  54. default "squeezelite -o I2S -b 500:2000 -d all=info -C 30"
  55. help
  56. This is the command to run when starting the device
  57. endmenu