Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829
  1. menu "Wireless Coexistence"
  2. config ESP_COEX_SW_COEXIST_ENABLE
  3. bool "Software controls WiFi/Bluetooth coexistence"
  4. depends on (ESP_WIFI_ENABLED && BT_ENABLED) || \
  5. (ESP_WIFI_ENABLED && IEEE802154_ENABLED) || \
  6. (IEEE802154_ENABLED && BT_ENABLED)
  7. default y
  8. select ESP_WIFI_STA_DISCONNECTED_PM_ENABLE if (ESP_WIFI_ENABLED)
  9. help
  10. If enabled, WiFi & Bluetooth coexistence is controlled by software rather than hardware.
  11. Recommended for heavy traffic scenarios. Both coexistence configuration options are
  12. automatically managed, no user intervention is required.
  13. If only Bluetooth is used, it is recommended to disable this option to reduce binary file
  14. size.
  15. config ESP_COEX_EXTERNAL_COEXIST_ENABLE
  16. bool "External Coexistence"
  17. default n
  18. depends on (!(BT_ENABLED||NIMBLE_ENABLED)&&(!IDF_TARGET_ESP32))
  19. help
  20. If enabled, HW External coexistence arbitration is managed by GPIO pins.
  21. It can support three types of wired combinations so far which are 1-wired/2-wired/3-wired.
  22. User can select GPIO pins in application code with configure interfaces.
  23. This function depends on BT-off
  24. because currently we do not support external coex and internal coex simultaneously.
  25. endmenu # Wireless Coexistence