We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 63c2a81 + 952f649 commit 2e49617Copy full SHA for 2e49617
cpu/esp32/esp-idf/rmt/Makefile
@@ -11,7 +11,11 @@ ESP32_SDK_SRC = \
11
#
12
13
ifeq (esp32s3,$(CPU_FAM))
14
- ESP32_SDK_SRC += components/bootloader_support/src/flash_encrypt.c
+ ifeq (,$(filter esp_idf_nvs_flash,$(USEMODULE)))
15
+ # this file is already compiled in `esp_idf_nvs_flash`
16
+ # don't compile it again if `esp_idf_nvs_flash` is used
17
+ ESP32_SDK_SRC += components/bootloader_support/src/flash_encrypt.c
18
+ endif
19
ESP32_SDK_SRC += components/esp_hw_support/dma/gdma.c
20
ESP32_SDK_SRC += components/hal/gdma_hal_ahb_v1.c
21
ESP32_SDK_SRC += components/hal/gdma_hal_top.c
0 commit comments