mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
41 lines
1.7 KiB
Plaintext
41 lines
1.7 KiB
Plaintext
menu "OpenThread Border Router Example"
|
|
|
|
config OPENTHREAD_BR_AUTO_START
|
|
bool 'Enable the automatic start mode in Thread Border Router.'
|
|
default False
|
|
help
|
|
If enabled, The Thread Border Router will connect to Wi-Fi with pre-configured
|
|
SSID and PSK, and then form a Thread network automatically. Otherwise, user need
|
|
to configure Wi-Fi and Thread manually.
|
|
|
|
menu "External coexist wire type and pin config"
|
|
config EXTERNAL_COEX_WIRE_TYPE
|
|
int "The wire_type of external coexist"
|
|
depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE
|
|
default 3
|
|
range 0 3
|
|
help
|
|
Select wire_type for external coexist, the wire_type define in external_coex_wire_t.
|
|
|
|
config EXTERNAL_COEX_REQUEST_PIN
|
|
int "The number of external coexist request pin"
|
|
depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE >= 0)
|
|
default 0
|
|
|
|
config EXTERNAL_COEX_GRANT_PIN
|
|
int "The number of external coexist grant pin"
|
|
depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE >= 1)
|
|
default 1
|
|
|
|
config EXTERNAL_COEX_PRIORITY_PIN
|
|
int "The number of external coexist priority pin"
|
|
depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE >= 2)
|
|
default 2
|
|
|
|
config EXTERNAL_COEX_TX_LINE_PIN
|
|
int "The number of external coexist tx_line pin"
|
|
depends on ESP_COEX_EXTERNAL_COEXIST_ENABLE && (EXTERNAL_COEX_WIRE_TYPE = 3)
|
|
default 3
|
|
endmenu # External coexist wire type and pin config
|
|
endmenu
|