What is the point of the coex
feature?
#3456
-
In my application I have both If it helps this is the relevant section in my esp-wifi = { version = "0.13.0", features = ["esp32",
# "utils",
"wifi", "sniffer",
"ble",
#"coex", # This actually seems to break coex? coex (bluetooth and wifi simultaneously) works fine without enabling this
"log-04",
] } |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
In #3079 (comment) we noticed that you actually can use both more or less at the same time w/o enabling coex - maybe because the protocols are "forgiving" in regards of transmission errors. Especially on ESP32 there were some bugs with coex which are fixed on main but not released yet: #3403 - with that |
Beta Was this translation helpful? Give feedback.
Yes - the
coex
feature basically serves the same purpose asCONFIG_ESP_COEX_SW_COEXIST_ENABLE
We probably should document that better, then.