From 7e5588fd6aab90b67f9601265cfd0ed29ade7ebe Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Thu, 21 May 2026 08:11:22 +0200 Subject: [PATCH] fix(bt): declare esp_event as a private requirement bt sources include esp_wifi_types.h via esp_blufi_api.h, which transitively includes esp_event_base.h from the esp_event component. --- components/bt/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/components/bt/CMakeLists.txt b/components/bt/CMakeLists.txt index 348af5ef910..84e1e9e549a 100644 --- a/components/bt/CMakeLists.txt +++ b/components/bt/CMakeLists.txt @@ -89,6 +89,7 @@ set(bt_priv_requires esp_ringbuf esp_gdbstub esp_security + esp_event ) idf_component_register(SRCS "${srcs}"