OVMS3-idf/examples/mesh/internal_communication/main/Kconfig.projbuild

75 lines
1.6 KiB
Plaintext
Raw Normal View History

2018-02-27 10:22:20 +00:00
menu "Example Configuration"
config MESH_CHANNEL
int "channel"
mesh: add channel switch function 1. add network channel switch function. - users can obtain the new channel through the event MESH_EVENT_CHANNEL_SWITCH. - the entire network will be moved to the same channel as the router without user intervention. - if no router is in the network, users can call esp_mesh_switch_channel() on the root side to move the entire network to their desired channel. 2. support not configuring the network channel. 3. support not configuring the router BSSID even if the router is hidden. 4. add allow_channel_switch to mesh configuration. - if the channel is not specified, this value will be ignored. - if the channel is specified and this value is set, when "fail" (mesh_attempts_t) times of parent selection or look for networks are reached, device will change to perform a full channel scan for networks that could join. - if the channel is specified and this value is set to 0, when a root is not elected, channel switch is not allowed. but when a root appears, the root performs a full channel scan during the process of connecting to the router, so even allow_channel_switch is set to 0, the root may still switch channel and eventually the entire network changes channel. 5. add allow_router_switch to mesh router configuration. - if the BSSID of router is not specified, this value will be ignored. - if the BSSID of router is specified and this value is set, when the router of this specified BSSID fails to be found after "fail" (mesh_attempts_t) times, the entire network is allowed to switch to another router with the same SSID. 6. modify the root to perform a full channel scan when esp_wifi_connect(). 7. support handling beacon without DS Paramter Set.
2018-11-21 16:57:59 +00:00
range 0 14
default 0
2018-02-27 10:22:20 +00:00
help
mesh network channel.
config MESH_ROUTER_SSID
string "Router SSID"
default "ROUTER_SSID"
help
Router SSID.
config MESH_ROUTER_PASSWD
string "Router password"
default "ROUTER_PASSWD"
help
Router password.
choice
bool "Mesh AP Authentication Mode"
default WIFI_AUTH_WPA2_PSK
2018-02-27 10:22:20 +00:00
help
Authentication mode.
config WIFI_AUTH_OPEN
bool "WIFI_AUTH_OPEN"
config WIFI_AUTH_WPA_PSK
bool "WIFI_AUTH_WPA_PSK"
config WIFI_AUTH_WPA2_PSK
bool "WIFI_AUTH_WPA2_PSK"
config WIFI_AUTH_WPA_WPA2_PSK
bool "WIFI_AUTH_WPA_WPA2_PSK"
endchoice
config MESH_AP_AUTHMODE
int
default 0 if WIFI_AUTH_OPEN
default 2 if WIFI_AUTH_WPA_PSK
default 3 if WIFI_AUTH_WPA2_PSK
default 4 if WIFI_AUTH_WPA_WPA2_PSK
help
Mesh AP authentication mode.
config MESH_AP_PASSWD
string "Mesh AP Password"
default "MAP_PASSWD"
help
Mesh AP password.
config MESH_AP_CONNECTIONS
int "Mesh AP Connections"
range 1 10
default 6
help
The number of stations allowed to connect in.
config MESH_MAX_LAYER
int "Mesh Max Layer"
range 1 25
2018-02-27 10:22:20 +00:00
default 6
help
Max layer allowed in mesh network.
config MESH_ROUTE_TABLE_SIZE
int "Mesh Routing Table Size"
range 1 300
default 50
help
The number of devices over the network(max: 300).
endmenu