Kconfig.projbuild 923 Bytes
Newer Older
1
menu "Nexboot Configuration"
2 3 4 5 6 7 8
 
config ESP_BOOT_GPIO26
   bool "Enable GPIO26 force bootloader"
   default y
   help
      Whether or not GPIO26 is enabled during boot to force bootloader mode

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
choice ESP_WIFI_MODE
    prompt "AP or STA"
    default ESP_WIFI_IS_STATION
    help
        Whether the esp32 is softAP or station.

config ESP_WIFI_IS_SOFTAP
    bool "SoftAP"
config ESP_WIFI_IS_STATION
    bool "Station"
endchoice

config ESP_WIFI_MODE_AP
    bool
    default y if ESP_WIFI_IS_SOFTAP
    default n if ESP_WIFI_IS_STATION

config ESP_WIFI_SSID
    string "WiFi SSID"
    default "nexboot"
    help
   SSID (network name) for the example to connect to.

config ESP_WIFI_PASSWORD
    string "WiFi Password"
    default "nexbootpwd"
    help
   WiFi password (WPA or WPA2) for the example to use.

config MAX_STA_CONN
    int "Max STA conn"
    default 2
    help
   Max number of the STA connects to AP.
endmenu