2022-12-14 04:10:54 -05:00
|
|
|
|
2023-02-14 08:20:55 -05:00
|
|
|
menu "Wireless Coexistence"
|
|
|
|
config ESP_COEX_SW_COEXIST_ENABLE
|
2022-12-14 04:10:54 -05:00
|
|
|
bool "Software controls WiFi/Bluetooth coexistence"
|
2023-01-09 08:29:41 -05:00
|
|
|
depends on (ESP_WIFI_ENABLED && BT_ENABLED) || \
|
2023-03-10 01:31:33 -05:00
|
|
|
(ESP_WIFI_ENABLED && IEEE802154_ENABLED) || \
|
|
|
|
(IEEE802154_ENABLED && BT_ENABLED)
|
2022-12-14 04:10:54 -05:00
|
|
|
default y
|
2023-03-10 01:31:33 -05:00
|
|
|
select ESP_WIFI_STA_DISCONNECTED_PM_ENABLE if (ESP_WIFI_ENABLED)
|
2022-12-14 04:10:54 -05:00
|
|
|
help
|
|
|
|
If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.
|
|
|
|
Recommended for heavy traffic scenarios. Both coexistence configuration options are
|
|
|
|
automatically managed, no user intervention is required.
|
|
|
|
If only Bluetooth is used, it is recommended to disable this option to reduce binary file
|
|
|
|
size.
|
|
|
|
|
2023-02-14 08:20:55 -05:00
|
|
|
config ESP_COEX_EXTERNAL_COEXIST_ENABLE
|
|
|
|
bool "External Coexistence"
|
2022-12-14 04:10:54 -05:00
|
|
|
default n
|
|
|
|
depends on (!(BT_ENABLED||NIMBLE_ENABLED)&&(!IDF_TARGET_ESP32))
|
|
|
|
help
|
|
|
|
If enabled, HW External coexistence arbitration is managed by GPIO pins.
|
|
|
|
It can support three types of wired combinations so far which are 1-wired/2-wired/3-wired.
|
|
|
|
User can select GPIO pins in application code with configure interfaces.
|
|
|
|
|
|
|
|
This function depends on BT-off
|
|
|
|
because currently we do not support external coex and internal coex simultaneously.
|
|
|
|
|
2023-08-21 04:34:17 -04:00
|
|
|
endmenu # Wireless Coexistence
|