2022-02-01 21:34:23 +01:00
|
|
|
MODULE = esp_idf_common
|
|
|
|
|
|
|
|
# source files required from ESP-IDF in any case, regardless of additional modules
|
|
|
|
ESP32_SDK_SRC = \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/bootloader_support/src/bootloader_flash_config_$(CPU).c \
|
|
|
|
components/bootloader_support/src/bootloader_flash.c \
|
|
|
|
components/bootloader_support/src/bootloader_efuse_$(CPU).c \
|
|
|
|
components/bootloader_support/src/bootloader_mem.c \
|
|
|
|
components/bootloader_support/src/bootloader_random_$(CPU).c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/driver/periph_ctrl.c \
|
|
|
|
components/esp_hw_support/cpu_util.c \
|
|
|
|
components/esp_hw_support/esp_clk.c \
|
|
|
|
components/esp_hw_support/port/$(CPU)/rtc_clk.c \
|
|
|
|
components/esp_hw_support/port/$(CPU)/rtc_clk_init.c \
|
|
|
|
components/esp_hw_support/port/$(CPU)/rtc_init.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/esp_hw_support/port/$(CPU)/rtc_sleep.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/esp_hw_support/port/$(CPU)/rtc_time.c \
|
|
|
|
components/esp_hw_support/regi2c_ctrl.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/esp_hw_support/sleep_modes.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/esp_pm/pm_impl.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/esp_rom/patches/esp_rom_uart.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/esp_system/esp_err.c \
|
|
|
|
components/esp_system/esp_system.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/esp_system/port/soc/$(CPU)/cache_err_int.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/esp_system/port/soc/$(CPU)/clk.c \
|
|
|
|
components/esp_system/port/soc/$(CPU)/reset_reason.c \
|
|
|
|
components/esp_system/system_time.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/esp_timer/src/esp_timer.c \
|
|
|
|
components/esp_timer/src/system_time.c \
|
|
|
|
components/hal/cpu_hal.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/hal/mpu_hal.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/hal/timer_hal.c \
|
|
|
|
components/hal/uart_hal.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
components/hal/wdt_hal_iram.c \
|
|
|
|
components/newlib/port/esp_time_impl.c \
|
|
|
|
components/spi_flash/cache_utils.c \
|
2022-06-18 18:57:19 +02:00
|
|
|
components/spi_flash/flash_ops.c \
|
2022-02-01 21:34:23 +01:00
|
|
|
#
|
|
|
|
|
2022-06-18 18:57:19 +02:00
|
|
|
ifneq (,$(filter periph_adc periph_dac,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/hal/rtc_io_hal.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO separate module
|
|
|
|
ifneq (,$(filter periph_can,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/hal/twai_hal.c
|
|
|
|
ESP32_SDK_SRC += components/hal/twai_hal_iram.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO separate module
|
|
|
|
ifneq (,$(filter periph_dac,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/driver/dac_common.c
|
|
|
|
ESP32_SDK_SRC += components/soc/$(CPU)/dac_periph.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO separate module
|
|
|
|
ifneq (,$(filter periph_hwrng,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/esp_hw_support/hw_random.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO separate module
|
|
|
|
ifneq (,$(filter periph_i2c%,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/driver/i2c.c
|
|
|
|
ESP32_SDK_SRC += components/hal/i2c_hal.c
|
|
|
|
ESP32_SDK_SRC += components/hal/i2c_hal_iram.c
|
|
|
|
ESP32_SDK_SRC += components/soc/$(CPU)/i2c_periph.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO separate module
|
|
|
|
ifneq (,$(filter periph_pwm%,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/hal/ledc_hal.c
|
|
|
|
ESP32_SDK_SRC += components/hal/ledc_hal_iram.c
|
|
|
|
ESP32_SDK_SRC += components/soc/$(CPU)/ledc_periph.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
# TODO separate module
|
|
|
|
ifneq (,$(filter periph_spi,$(USEMODULE)))
|
|
|
|
ESP32_SDK_SRC += components/hal/spi_hal.c
|
|
|
|
ESP32_SDK_SRC += components/soc/$(CPU)/spi_periph.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter xtensa%,$(TARGET_ARCH)))
|
|
|
|
ESP32_SDK_SRC += components/esp_hw_support/port/$(CPU)/rtc_wdt.c
|
|
|
|
ESP32_SDK_SRC += components/soc/$(CPU)/rtc_io_periph.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter riscv%,$(TARGET_ARCH)))
|
|
|
|
ESP32_SDK_SRC += components/riscv/interrupt.c
|
|
|
|
ESP32_SDK_ASMSRC += components/freertos/port/riscv/portasm.S
|
|
|
|
ESP32_SDK_ASMSRC += components/riscv/vectors.S
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter esp32,$(CPU)))
|
|
|
|
ESP32_SDK_SRC += components/esp_timer/src/esp_timer_impl_frc_legacy.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(filter esp32c3,$(CPU)))
|
|
|
|
ESP32_SDK_SRC += components/esp_hw_support/port/$(CPU)/cpu_util_$(CPU).c
|
|
|
|
ESP32_SDK_SRC += components/esp_hw_support/sleep_retention.c
|
|
|
|
ESP32_SDK_SRC += components/esp_timer/src/esp_timer_impl_systimer.c
|
|
|
|
ESP32_SDK_SRC += components/hal/$(CPU)/rtc_cntl_hal.c
|
|
|
|
ESP32_SDK_SRC += components/hal/systimer_hal.c
|
|
|
|
endif
|
|
|
|
|
2022-02-01 21:34:23 +01:00
|
|
|
include $(RIOTBASE)/Makefile.base
|
|
|
|
|
|
|
|
ESP32_SDK_BIN = $(BINDIR)/$(MODULE)
|
|
|
|
|
|
|
|
include ../esp_idf.mk
|
|
|
|
include ../esp_idf_cflags.mk
|