From 4eb3e8984196d845d50b7cd912ee6e034e875bd0 Mon Sep 17 00:00:00 2001 From: Konstantin Kondrashov Date: Thu, 6 Feb 2020 14:00:18 +0800 Subject: [PATCH] esp32: add implementation of esp_timer based on TG0 LAC timer Closes: IDF-979 * Original commit: espressif/esp-idf@739eb05bb97736b70507e7ebcfee58e670672d23 --- components/mdns/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/mdns/CMakeLists.txt b/components/mdns/CMakeLists.txt index 15b0d40f8..4274d2a46 100644 --- a/components/mdns/CMakeLists.txt +++ b/components/mdns/CMakeLists.txt @@ -3,5 +3,6 @@ idf_component_register(SRCS "mdns.c" "mdns_networking.c" INCLUDE_DIRS "include" PRIV_INCLUDE_DIRS "private_include" - REQUIRES lwip mbedtls console esp_netif) + REQUIRES lwip mbedtls console esp_netif + PRIV_REQUIRES esp_timer)