1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-20 03:53:49 +01:00
Gunar Schorcht 9cca08151b cpu/esp32: remove esp_idf_api
This API which was added to prevent type conflicts is not needed any longer.
2025-05-28 18:00:26 +02:00

19 lines
450 B
Makefile

MODULE = esp_idf_gpio
# source files to be compiled for this module
ESP32_SDK_SRC = \
components/esp_driver_gpio/src/gpio.c \
components/esp_driver_gpio/src/rtc_io.c \
components/esp_hw_support/rtc_module.c \
components/hal/gpio_hal.c \
components/hal/rtc_io_hal.c \
components/soc/$(CPU_FAM)/gpio_periph.c \
#
include $(RIOTBASE)/Makefile.base
ESP32_SDK_BIN = $(BINDIR)/$(MODULE)
include ../esp_idf.mk
include ../esp_idf_cflags.mk