From 93b5785abac64a44cc36f9ce22ff61a88aa3c613 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 190b388c73d..25919fd36dd 100644 --- a/components/bt/CMakeLists.txt +++ b/components/bt/CMakeLists.txt @@ -91,6 +91,7 @@ set(bt_priv_requires esp_ringbuf esp_gdbstub esp_security + esp_event ) idf_component_register(SRCS "${srcs}"