mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
0bec8a81ac
To support ESP32x families with the existing Makefiles, CPU_FAM is used instead of CPU in the Makefiles.
18 lines
384 B
Makefile
18 lines
384 B
Makefile
MODULE = esp_idf_gpio
|
|
|
|
# source files to be compiled for this module
|
|
ESP32_SDK_SRC = \
|
|
components/driver/gpio.c \
|
|
components/driver/rtc_io.c \
|
|
components/driver/rtc_module.c \
|
|
components/hal/gpio_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
|