From ffd5efca99f0e8781bc8c5221a2dba009dce99bf Mon Sep 17 00:00:00 2001 From: chiragatal Date: Tue, 6 Oct 2020 18:13:28 +0530 Subject: [PATCH] ws2812_led: Fix for rmt APIs getting included in case of make for IDF v4.0. --- components/ws2812_led/component.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ws2812_led/component.mk b/components/ws2812_led/component.mk index 1d11dbc..1118b82 100644 --- a/components/ws2812_led/component.mk +++ b/components/ws2812_led/component.mk @@ -1,5 +1,5 @@ COMPONENT_ADD_INCLUDEDIRS := . COMPONENT_SRCDIRS := . ifndef CONFIG_WS2812_LED_ENABLE - COMPONENT_OBJEXCLUDE += led_strip_rmt_ws2812.c + COMPONENT_OBJEXCLUDE += led_strip_rmt_ws2812.o endif