Kconfig.projbuild 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. menu "Example Bridge Configuration"
  2. config EXAMPLE_BR_DHCPS
  3. bool "Enable DHCP Server"
  4. default n
  5. help
  6. Enable DHCP Server on the device.
  7. endmenu
  8. menu "Example AP Wifi Configuration"
  9. config EXAMPLE_BR_WIFI
  10. depends on SOC_WIFI_SUPPORTED
  11. default n
  12. bool "Bridge WiFi interface"
  13. help
  14. Add WiFi interface to be bridged.
  15. config EXAMPLE_BR_WIFI_SSID
  16. depends on EXAMPLE_BR_WIFI
  17. string "WiFi SSID"
  18. default "myssid"
  19. help
  20. SSID (network name) for the example to connect to.
  21. config EXAMPLE_BR_WIFI_PASSWORD
  22. depends on EXAMPLE_BR_WIFI
  23. string "WiFi Password"
  24. default "mypassword"
  25. help
  26. WiFi password (WPA or WPA2) for the example to use.
  27. config EXAMPLE_BR_WIFI_CHANNEL
  28. depends on EXAMPLE_BR_WIFI
  29. int "WiFi Channel"
  30. range 1 13
  31. default 1
  32. help
  33. WiFi channel (network channel) for the example to use.
  34. config EXAMPLE_BR_MAX_STA_CONN
  35. depends on EXAMPLE_BR_WIFI
  36. int "Maximal STA connections"
  37. default 4
  38. help
  39. Max number of the STA connects to AP.
  40. endmenu