From d8a29c30d47473128d212b80d06c6958170048f2 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Sat, 13 Dec 2025 12:43:14 +0100 Subject: [PATCH] Correct build info --- firmware/esp32/main/CMakeLists.txt | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/firmware/esp32/main/CMakeLists.txt b/firmware/esp32/main/CMakeLists.txt index d06dc88..fa6fcfd 100644 --- a/firmware/esp32/main/CMakeLists.txt +++ b/firmware/esp32/main/CMakeLists.txt @@ -1,14 +1,16 @@ -idf_component_register(SRCS "./main.cpp" - "./wifi.cpp" - "./i2c.c" - "./mqtt.cpp" - INCLUDE_DIRS "../include" - REQUIRES esp_wifi - nvs_flash - esp_pm - esp_hw_support - esp_system - freertos - log - i2c_master) - mqtt) +idf_component_register( + SRCS "./main.cpp" + "./wifi.cpp" + "./i2c.cpp" + "./mqtt.cpp" + INCLUDE_DIRS "../include" + REQUIRES esp_wifi + nvs_flash + esp_pm + esp_hw_support + esp_system + freertos + log + mqtt + esp_driver_i2c +)